blob: a1542fedac787acac755a93bc3dea3f35524f881 (
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
37
38
39
40
41
42
43
44
45
46
47
48
|
/* -*- C++ -*- */
// $Id: stdcpp.h
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// stdcpp.h
//
// = AUTHOR
// Irfan and Tim
//
// = DESCRIPTION
// This file contains the portability ugliness for the Standard C++
// Library. As implementations of the "standard" emerge, this file
// will need to be updated.
//
// ============================================================================
#include "ace/config.h"
#if defined (ACE_WIN32)
#if defined (ACE_HAS_STANDARD_CPP_LIBRARY)
// For some reason, The Standard C++ Library has decided to save space
// and ommit the file extensions.
#include /**/ <iomanip>
#include /**/ <ios>
#include /**/ <iostream>
#include /**/ <istream>
#include /**/ <ostream>
#include /**/ <streambuf>
#else /* ACE_HAS_STANDARD_CPP_LIBRARY */
#include /**/ <fstream.h>
#include /**/ <iomanip.h>
#include /**/ <ios.h>
#include /**/ <iostream.h>
#include /**/ <istream.h>
#include /**/ <ostream.h>
#include /**/ <streamb.h>
#include /**/ <strstrea.h>
#endif /* ACE_HAS_STANDARD_CPP_LIBRARY */
#else /* ACE_WIN32 */
// All platforms except for NT include iostream.h.
#include /**/ <iostream.h>
#endif /* ACE_WIN32 */
|