Added std functions.
This commit is contained in:
parent
f27fa7a6f3
commit
bf691db33a
3 changed files with 6 additions and 0 deletions
|
@ -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
4
std/fstream.hpp
Normal file
|
@ -0,0 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
#include <fstream>
|
||||
using std::ifstream;
|
|
@ -3,3 +3,4 @@
|
|||
#include <string>
|
||||
|
||||
using std::string;
|
||||
using std::getline;
|
||||
|
|
Reference in a new issue