iomanip.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:5k
源码类别:

STL

开发平台:

Visual C++

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1993 Free Software Foundation
  3. This file is part of the GNU IO Library.  This library is free
  4. software; you can redistribute it and/or modify it under the
  5. terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this library; see the file COPYING.  If not, write to the Free
  14. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15. As a special exception, if you link this library with files
  16. compiled with a GNU compiler to produce an executable, this does not cause
  17. the resulting executable to be covered by the GNU General Public License.
  18. This exception does not however invalidate any other reasons why
  19. the executable file might be covered by the GNU General Public License. */
  20. #ifndef _IOMANIP_H
  21. #ifdef __GNUG__
  22. #pragma interface
  23. #endif
  24. #define _IOMANIP_H
  25. #include <iostream.h>
  26. extern "C++" {
  27. //-----------------------------------------------------------------------------
  28. // Parametrized Manipulators as specified by ANSI draft
  29. //-----------------------------------------------------------------------------
  30. //-----------------------------------------------------------------------------
  31. // Stream Manipulators
  32. //-----------------------------------------------------------------------------
  33. //
  34. template<class TP> class smanip; // TP = Type Param
  35. template<class TP> class sapp {
  36.     ios& (*_f)(ios&, TP);
  37. public: 
  38.     sapp(ios& (*f)(ios&, TP)) : _f(f) {}
  39.     //
  40.     smanip<TP> operator()(TP a) 
  41.       { return smanip<TP>(_f, a); }
  42. };
  43. template<class TP>
  44. inline istream& operator>>(istream& i, const smanip<TP>& m);
  45. template<class TP>
  46. inline ostream& operator<<(ostream& o, const smanip<TP>& m);
  47. template <class TP> class smanip {
  48.     ios& (*_f)(ios&, TP);
  49.     TP _a;
  50. public:
  51.     smanip(ios& (*f)(ios&, TP), TP a) : _f(f), _a(a) {}
  52.     //
  53.     friend 
  54.       istream& operator>> <>(istream& i, const smanip<TP>& m);
  55.     friend
  56.       ostream& operator<< <>(ostream& o, const smanip<TP>& m);
  57. };
  58. #ifdef __GNUG__
  59. extern template class smanip<int>;
  60. extern template class smanip<ios::fmtflags>;
  61. #endif
  62. template<class TP>
  63. inline istream& operator>>(istream& i, const smanip<TP>& m)
  64. { (*m._f)(i, m._a); return i; }
  65. template<class TP>
  66. inline ostream& operator<<(ostream& o, const smanip<TP>& m)
  67. { (*m._f)(o, m._a); return o;}
  68. #ifdef __GNUG__
  69. extern template istream& operator>>(istream&, const smanip<int>&);
  70. extern template istream& operator>>(istream&, const smanip<ios::fmtflags>&);
  71. extern template ostream& operator<<(ostream&, const smanip<int>&);
  72. extern template ostream& operator<<(ostream&, const smanip<ios::fmtflags>&);
  73. #endif
  74. //-----------------------------------------------------------------------------
  75. // Input-Stream Manipulators
  76. //-----------------------------------------------------------------------------
  77. //
  78. template<class TP> class imanip; 
  79. template<class TP> class iapp {
  80.     istream& (*_f)(istream&, TP);
  81. public: 
  82.     iapp(istream& (*f)(istream&,TP)) : _f(f) {}
  83.     //
  84.     imanip<TP> operator()(TP a)
  85.        { return imanip<TP>(_f, a); }
  86. };
  87. template <class TP>
  88. inline istream& operator>>(istream&, const imanip<TP>&);
  89. template <class TP> class imanip {
  90.     istream& (*_f)(istream&, TP);
  91.     TP _a;
  92. public:
  93.     imanip(istream& (*f)(istream&, TP), TP a) : _f(f), _a(a) {}
  94.     //
  95.     friend
  96.       istream& operator>> <>(istream& i, const imanip<TP>& m);
  97. };
  98. template <class TP>
  99. inline istream& operator>>(istream& i, const imanip<TP>& m)
  100. { return (*m._f)( i, m._a); }
  101. //-----------------------------------------------------------------------------
  102. // Output-Stream Manipulators
  103. //-----------------------------------------------------------------------------
  104. //
  105. template<class TP> class omanip; 
  106. template<class TP> class oapp {
  107.     ostream& (*_f)(ostream&, TP);
  108. public: 
  109.     oapp(ostream& (*f)(ostream&,TP)) : _f(f) {}
  110.     //
  111.     omanip<TP> operator()(TP a)
  112.       { return omanip<TP>(_f, a); }
  113. };
  114. template <class TP>
  115. inline ostream& operator<<(ostream&, const omanip<TP>&);
  116. template <class TP> class omanip {
  117.     ostream& (*_f)(ostream&, TP);
  118.     TP _a;
  119. public:
  120.     omanip(ostream& (*f)(ostream&, TP), TP a) : _f(f), _a(a) {}
  121.     //
  122.     friend
  123.       ostream& operator<< <>(ostream& o, const omanip<TP>& m);
  124. };
  125. template <class TP>
  126. inline ostream& operator<<(ostream& o, const omanip<TP>& m)
  127. { return (*m._f)(o, m._a); }
  128. //-----------------------------------------------------------------------------
  129. // Available Manipulators
  130. //-----------------------------------------------------------------------------
  131. //
  132. // Macro to define an iomanip function, with one argument
  133. // The underlying function is `__iomanip_<name>' 
  134. //
  135. #define __DEFINE_IOMANIP_FN1(type,param,function)         
  136. extern ios& __iomanip_##function (ios&, param); 
  137. inline type<param> function (param n)           
  138.         { return type<param> (__iomanip_##function, n); }
  139. __DEFINE_IOMANIP_FN1( smanip, int, setbase)
  140. __DEFINE_IOMANIP_FN1( smanip, int, setfill)
  141. __DEFINE_IOMANIP_FN1( smanip, int, setprecision)
  142. __DEFINE_IOMANIP_FN1( smanip, int, setw)
  143. __DEFINE_IOMANIP_FN1( smanip, ios::fmtflags, resetiosflags)
  144. __DEFINE_IOMANIP_FN1( smanip, ios::fmtflags, setiosflags)
  145. } // extern "C++"
  146. #endif /*!_IOMANIP_H*/