mirror of https://github.com/CGAL/cgal
83 lines
2.1 KiB
Plaintext
83 lines
2.1 KiB
Plaintext
/*
|
|
* Copyright (c) 1999
|
|
* Boris Fomitchev
|
|
*
|
|
* This material is provided "as is", with absolutely no warranty expressed
|
|
* or implied. Any use is at your own risk.
|
|
*
|
|
* Permission to use or copy this software for any purpose is hereby granted
|
|
* without fee, provided the above notices are retained on all copies.
|
|
* Permission to modify the code and to distribute modified code is granted,
|
|
* provided the above notices are retained, and a notice that the code was
|
|
* modified is included with the above copyright notice.
|
|
*
|
|
*/
|
|
|
|
#ifndef __STLPORT_IOS
|
|
# define __STLPORT_IOS
|
|
|
|
# ifndef __STL_CONFIG_H
|
|
# include <stl_config.h>
|
|
# endif
|
|
|
|
# if defined ( __STL_REDEFINE_STD ) && defined (std)
|
|
# undef std
|
|
# define __STL_RESUME_STD_FOR_IOS
|
|
# define __STLPORT_NATIVE_PASS
|
|
# endif
|
|
|
|
# include __STL_NATIVE_HEADER(ios)
|
|
|
|
# if defined ( __STL_RESUME_STD_FOR_IOS )
|
|
# undef __STL_RESUME_STD_FOR_IOS
|
|
# define std __STLPORT_NAMESPACE
|
|
# undef __STLPORT_NATIVE_PASS
|
|
# endif
|
|
|
|
# ifdef __STL_USE_OWN_NAMESPACE
|
|
__STL_BEGIN_NAMESPACE
|
|
|
|
using __STL_VENDOR_STD::streamoff;
|
|
using __STL_VENDOR_STD::streamsize;
|
|
|
|
using __STL_VENDOR_STD::ios_base;
|
|
using __STL_VENDOR_STD::basic_ios;
|
|
|
|
// _lib.std.ios.manip_, manipulators:
|
|
using __STL_VENDOR_STD::boolalpha;
|
|
using __STL_VENDOR_STD::noboolalpha;
|
|
using __STL_VENDOR_STD::showbase;
|
|
using __STL_VENDOR_STD::noshowbase;
|
|
using __STL_VENDOR_STD::showpoint;
|
|
using __STL_VENDOR_STD::noshowpoint;
|
|
using __STL_VENDOR_STD::showpos;
|
|
using __STL_VENDOR_STD::noshowpos;
|
|
using __STL_VENDOR_STD::skipws;
|
|
using __STL_VENDOR_STD::noskipws;
|
|
using __STL_VENDOR_STD::uppercase;
|
|
using __STL_VENDOR_STD::nouppercase;
|
|
|
|
// _lib.adjustfield.manip_ adjustfield:
|
|
using __STL_VENDOR_STD::internal;
|
|
using __STL_VENDOR_STD::left;
|
|
using __STL_VENDOR_STD::right;
|
|
|
|
// _lib.basefield.manip_ basefield:
|
|
using __STL_VENDOR_STD::dec;
|
|
using __STL_VENDOR_STD::hex;
|
|
using __STL_VENDOR_STD::oct;
|
|
|
|
// _lib.floatfield.manip_ floatfield:
|
|
using __STL_VENDOR_STD::fixed;
|
|
using __STL_VENDOR_STD::scientific;
|
|
|
|
__STL_END_NAMESPACE
|
|
|
|
#endif /* __STL_OWN_NAMESPACE */
|
|
|
|
#endif /* __STLPORT_IOS */
|
|
|
|
// Local Variables:
|
|
// mode:C++
|
|
// End:
|