Added std functions.

This commit is contained in:
vng 2013-08-07 22:17:08 +03:00
parent f27fa7a6f3
commit bf691db33a
3 changed files with 6 additions and 0 deletions

View file

@ -7,3 +7,4 @@ using std::min;
using std::max;
using std::transform;
using std::equal_range;
using std::replace;

4
std/fstream.hpp Normal file
View file

@ -0,0 +1,4 @@
#pragma once
#include <fstream>
using std::ifstream;

View file

@ -3,3 +3,4 @@
#include <string>
using std::string;
using std::getline;