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:
authorAlex Zolotarev <alex@maps.me>2015-06-24 15:49:13 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:34 +0300
commitd7dfd870746a3e89ade642fd7d2605e753bbdafd (patch)
treee7430de05332b7d0834f9c6670cb8616604ed315 /std/iostream.hpp
parent7afc128a29c5a290f34e4f7aafcbe0e80bb09f50 (diff)
std folder cleanup & removing not needed boost references.
Diffstat (limited to 'std/iostream.hpp')
-rw-r--r--std/iostream.hpp30
1 files changed, 11 insertions, 19 deletions
diff --git a/std/iostream.hpp b/std/iostream.hpp
index d944705db8..106683c45d 100644
--- a/std/iostream.hpp
+++ b/std/iostream.hpp
@@ -1,35 +1,27 @@
#pragma once
-#include "common_defines.hpp"
#include "target_os.hpp"
#ifdef new
#undef new
#endif
-#ifdef OMIM_OS_BADA
- #include <istream>
- #include <ostream>
+#include <iostream>
-#else // OMIM_OS_BADA
- #include <iostream>
+using std::cin;
+using std::cout;
+using std::cerr;
- using std::cin;
- using std::cout;
- using std::cerr;
+using std::istream;
+using std::ostream;
- using std::istream;
- using std::ostream;
-
- #ifndef OMIM_OS_ANDROID
- using std::wcin;
- using std::wcout;
- using std::wcerr;
- #endif
-#endif // OMIM_OS_BADA
+#ifndef OMIM_OS_ANDROID
+ using std::wcin;
+ using std::wcout;
+ using std::wcerr;
+#endif
using std::endl;
using std::flush;
-using std::locale;
#ifdef DEBUG_NEW
#define new DEBUG_NEW