Added some std wrappers.
This commit is contained in:
parent
0ba8c7c071
commit
9503d56fd4
8 changed files with 44 additions and 0 deletions
5
std/algorithm.hpp
Normal file
5
std/algorithm.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
using std::equal;
|
3
std/cstdio.hpp
Normal file
3
std/cstdio.hpp
Normal file
|
@ -0,0 +1,3 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdio>
|
13
std/iostream.hpp
Normal file
13
std/iostream.hpp
Normal 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
5
std/noncopyable.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
using boost::noncopyable;
|
5
std/sstream.hpp
Normal file
5
std/sstream.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <sstream>
|
||||
|
||||
using std::ostringstream;
|
3
std/stdint.hpp
Normal file
3
std/stdint.hpp
Normal file
|
@ -0,0 +1,3 @@
|
|||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
5
std/string.hpp
Normal file
5
std/string.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
using std::string;
|
5
std/vector.hpp
Normal file
5
std/vector.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
using std::vector;
|
Reference in a new issue