Added some std wrappers.

This commit is contained in:
vng 2013-08-05 00:58:07 +03:00
parent 0ba8c7c071
commit 9503d56fd4
8 changed files with 44 additions and 0 deletions

5
std/algorithm.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include <algorithm>
using std::equal;

3
std/cstdio.hpp Normal file
View file

@ -0,0 +1,3 @@
#pragma once
#include <cstdio>

13
std/iostream.hpp Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include <iostream>
using std::cin;
using std::cout;
using std::cerr;
using std::endl;
using std::flush;
using std::istream;
using std::ostream;

5
std/noncopyable.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include <boost/noncopyable.hpp>
using boost::noncopyable;

5
std/sstream.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include <sstream>
using std::ostringstream;

3
std/stdint.hpp Normal file
View file

@ -0,0 +1,3 @@
#pragma once
#include <stdint.h>

5
std/string.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include <string>
using std::string;

5
std/vector.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include <vector>
using std::vector;