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

iostream.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d944705db8041950d98a6d77c1d5a2b5c4039878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#include "common_defines.hpp"
#include "target_os.hpp"

#ifdef new
#undef new
#endif

#ifdef OMIM_OS_BADA
  #include <istream>
  #include <ostream>

#else   // OMIM_OS_BADA
  #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;
using std::flush;
using std::locale;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif