Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-05-10 19:03:56 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:38:15 +0300
commit0218b4973ef5a865c64764bc7f1c984baa061031 (patch)
tree8ae88aed84c6b83e3711cf622e2d182c1523750c
parent00505c90aef29595a2b8e3a16dd2882ec2a5bbf9 (diff)
Move istream, ostream from "fstream.hpp" to "iostream.hpp".
-rw-r--r--coding/coding_tests/reader_test.cpp2
-rw-r--r--generator/generator_tool/generator_tool.cpp1
-rw-r--r--indexer/categories_holder.hpp2
-rw-r--r--indexer/classificator.cpp2
-rw-r--r--indexer/classificator.hpp2
-rw-r--r--indexer/classificator_loader.cpp1
-rw-r--r--indexer/drawing_rules.hpp2
-rw-r--r--indexer/tree_structure.hpp2
-rw-r--r--indexer/types_mapping.hpp2
-rw-r--r--platform/settings.cpp2
-rw-r--r--std/fstream.hpp7
-rw-r--r--std/iostream.hpp28
12 files changed, 29 insertions, 24 deletions
diff --git a/coding/coding_tests/reader_test.cpp b/coding/coding_tests/reader_test.cpp
index 225ae83335..efa95a8249 100644
--- a/coding/coding_tests/reader_test.cpp
+++ b/coding/coding_tests/reader_test.cpp
@@ -8,7 +8,7 @@
#include "../buffer_reader.hpp"
#include "../reader_streambuf.hpp"
-#include "../../std/fstream.hpp"
+#include "../../std/iostream.hpp"
namespace
diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp
index d56bf11f93..02a45481a1 100644
--- a/generator/generator_tool/generator_tool.cpp
+++ b/generator/generator_tool/generator_tool.cpp
@@ -24,6 +24,7 @@
#include "../../3party/gflags/src/gflags/gflags.h"
#include "../../std/iostream.hpp"
+#include "../../std/fstream.hpp"
#include "../../std/iomanip.hpp"
#include "../../std/numeric.hpp"
diff --git a/indexer/categories_holder.hpp b/indexer/categories_holder.hpp
index 0bbddf6c63..ab62ca0d21 100644
--- a/indexer/categories_holder.hpp
+++ b/indexer/categories_holder.hpp
@@ -4,7 +4,7 @@
#include "../std/vector.hpp"
#include "../std/map.hpp"
#include "../std/string.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
#include "../std/shared_ptr.hpp"
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index f23823e374..e671978bc9 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -1,4 +1,3 @@
-#include "../base/SRC_FIRST.hpp"
#include "classificator.hpp"
#include "tree_structure.hpp"
@@ -10,6 +9,7 @@
#include "../std/bind.hpp"
#include "../std/algorithm.hpp"
#include "../std/iterator.hpp"
+#include "../std/fstream.hpp"
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp
index 01d5a6adb8..930dc59ae9 100644
--- a/indexer/classificator.hpp
+++ b/indexer/classificator.hpp
@@ -6,7 +6,7 @@
#include "../std/vector.hpp"
#include "../std/string.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
#include "../std/bitset.hpp"
diff --git a/indexer/classificator_loader.cpp b/indexer/classificator_loader.cpp
index b54ddf35a2..5dcf4edb40 100644
--- a/indexer/classificator_loader.cpp
+++ b/indexer/classificator_loader.cpp
@@ -10,6 +10,7 @@
#include "../base/logging.hpp"
+#include "../std/iostream.hpp"
#include "../std/fstream.hpp"
diff --git a/indexer/drawing_rules.hpp b/indexer/drawing_rules.hpp
index 648e64542a..a596e36295 100644
--- a/indexer/drawing_rules.hpp
+++ b/indexer/drawing_rules.hpp
@@ -8,7 +8,7 @@
#include "../std/vector.hpp"
#include "../std/array.hpp"
#include "../std/string.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
class LineDefProto;
diff --git a/indexer/tree_structure.hpp b/indexer/tree_structure.hpp
index 605fbd2c30..6d96d8a645 100644
--- a/indexer/tree_structure.hpp
+++ b/indexer/tree_structure.hpp
@@ -2,7 +2,7 @@
#include "../base/assert.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
namespace tree
diff --git a/indexer/types_mapping.hpp b/indexer/types_mapping.hpp
index 2b61e35cb5..d33a20e1f3 100644
--- a/indexer/types_mapping.hpp
+++ b/indexer/types_mapping.hpp
@@ -3,7 +3,7 @@
#include "../std/vector.hpp"
#include "../std/map.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
class IndexAndTypeMapping
diff --git a/platform/settings.cpp b/platform/settings.cpp
index d5ba507737..d3542fe283 100644
--- a/platform/settings.cpp
+++ b/platform/settings.cpp
@@ -14,7 +14,7 @@
#include "../platform/platform.hpp"
#include "../std/sstream.hpp"
-#include "../std/fstream.hpp"
+#include "../std/iostream.hpp"
#define DELIM_CHAR '='
diff --git a/std/fstream.hpp b/std/fstream.hpp
index 44b8929274..2e908221f3 100644
--- a/std/fstream.hpp
+++ b/std/fstream.hpp
@@ -10,12 +10,11 @@
#include <ios>
#else
#include <fstream>
+
+ using std::ofstream;
+ using std::ifstream;
#endif
-using std::ofstream;
-using std::ostream;
-using std::ifstream;
-using std::istream;
using std::ios;
#ifdef DEBUG_NEW
diff --git a/std/iostream.hpp b/std/iostream.hpp
index 7e56b9e9b2..d944705db8 100644
--- a/std/iostream.hpp
+++ b/std/iostream.hpp
@@ -7,20 +7,24 @@
#endif
#ifdef OMIM_OS_BADA
-#include <istream>
-#include <ostream>
+ #include <istream>
+ #include <ostream>
#else // OMIM_OS_BADA
-#include <iostream>
-
-using std::cin;
-using std::cout;
-using std::cerr;
-#ifndef OMIM_OS_ANDROID
-using std::wcin;
-using std::wcout;
-using std::wcerr;
-#endif
+ #include <iostream>
+
+ using std::cin;
+ using std::cout;
+ using std::cerr;
+
+ using std::istream;
+ using std::ostream;
+
+ #ifndef OMIM_OS_ANDROID
+ using std::wcin;
+ using std::wcout;
+ using std::wcerr;
+ #endif
#endif // OMIM_OS_BADA
using std::endl;