00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _STLP_IOMANIP_H
00017 # define _STLP_IOMANIP_H
00018
00019 # ifndef _STLP_OUTERMOST_HEADER_ID
00020 # define _STLP_OUTERMOST_HEADER_ID 0x2031
00021 # include <stl/_prolog.h>
00022 # endif
00023
00024 # if defined ( _STLP_OWN_IOSTREAMS )
00025
00026 #ifdef __BORLANDC__
00027 # include <iomanip.>
00028 #else
00029 # include <iomanip>
00030 #endif
00031
00032 # ifndef _STLP_HAS_NO_NAMESPACES
00033 # ifdef _STLP_BROKEN_USING_DIRECTIVE
00034 using namespace _STLP_STD;
00035 # else
00036 using _STLP_STD::setiosflags;
00037 using _STLP_STD::resetiosflags;
00038 using _STLP_STD::setbase;
00039 using _STLP_STD::setfill;
00040 using _STLP_STD::setprecision;
00041 using _STLP_STD::setw;
00042 # endif
00043 # endif
00044
00045
00046 # include <iostream.h>
00047
00048 # elif !defined (_STLP_USE_NO_IOSTREAMS)
00049
00050 # include _STLP_NATIVE_OLD_STREAMS_HEADER(iomanip.h)
00051
00052 # if defined (_STLP_USE_NAMESPACES) && ! defined (_STLP_BROKEN_USING_DIRECTIVE)
00053 _STLP_BEGIN_NAMESPACE
00054 # include <using/h/iomanip.h>
00055 _STLP_END_NAMESPACE
00056 # endif
00057
00058 # endif
00059
00060 # if (_STLP_OUTERMOST_HEADER_ID == 0x2031)
00061 # include <stl/_epilog.h>
00062 # undef _STLP_OUTERMOST_HEADER_ID
00063 # endif
00064
00065 #endif
00066
00067
00068
00069