blob: 48b8c2ac6f0208859ad2362fe0b186370e4295ad (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// stdstreams.h
//
// = AUTHOR
// David L. Levine
//
// = DESCRIPTION
// Wrapper for streams library #includes. For use by application code
// when they want to #include iostream, fstream, etc.
//
// ============================================================================
#if !defined (ACE_STDSTREAMS_H)
#define ACE_STDSTREAMS_H
#if defined (ACE_HAS_MINIMUM_STREAMH_INCLUSION)
# undef ACE_HAS_MINIMUM_STREAMH_INCLUSION
#endif /* ACE_HAS_MINIMUM_STREAMH_INCLUSION */
#include "ace/stdcpp.h"
#endif /* ACE_STDSTREAMS_H */
|