summaryrefslogtreecommitdiff
path: root/ace/stdcpp.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-30 06:50:29 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-30 06:50:29 +0000
commita4a7690c336d4c8a16b3041c86d501ba38226e96 (patch)
tree9e9f93a98edd2591453f092d178ad29a1c5fb519 /ace/stdcpp.h
parenta5c4d8047ab58df5c45092e18ae503ad40518f0e (diff)
downloadATCD-unlabeled-4.1.2.tar.gz
This commit was manufactured by cvs2svn to create branchunlabeled-4.1.2
'unlabeled-4.1.2'.
Diffstat (limited to 'ace/stdcpp.h')
-rw-r--r--ace/stdcpp.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/ace/stdcpp.h b/ace/stdcpp.h
deleted file mode 100644
index a1542fedac7..00000000000
--- a/ace/stdcpp.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- 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 */
-