From bf691db33a975fed2591c4de30e8f5e8f80fc386 Mon Sep 17 00:00:00 2001 From: vng Date: Wed, 7 Aug 2013 22:17:08 +0300 Subject: [PATCH] Added std functions. --- std/algorithm.hpp | 1 + std/fstream.hpp | 4 ++++ std/string.hpp | 1 + 3 files changed, 6 insertions(+) create mode 100644 std/fstream.hpp diff --git a/std/algorithm.hpp b/std/algorithm.hpp index 7ec7845..7fd1936 100644 --- a/std/algorithm.hpp +++ b/std/algorithm.hpp @@ -7,3 +7,4 @@ using std::min; using std::max; using std::transform; using std::equal_range; +using std::replace; diff --git a/std/fstream.hpp b/std/fstream.hpp new file mode 100644 index 0000000..b244031 --- /dev/null +++ b/std/fstream.hpp @@ -0,0 +1,4 @@ +#pragma once + +#include +using std::ifstream; diff --git a/std/string.hpp b/std/string.hpp index 8fe3c8b..7c4ea0a 100644 --- a/std/string.hpp +++ b/std/string.hpp @@ -3,3 +3,4 @@ #include using std::string; +using std::getline;