blob: f8315b0e9365f059b1e595d5063a17baa5a33385 (
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
49
|
/* -*- 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 */
# // Most platforms, except for NT, #include iostream.h.
# if ! defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION)
# include /**/ <iostream.h>
# endif /* ! ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */
#endif /* ACE_WIN32 */
|