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

STL

开发平台:

Visual C++

  1. /* 
  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 _COMPAT_STREAM_H
  21. #define _COMPAT_STREAM_H
  22. // Compatibility with old library.
  23. // DO NOT USE THESE FUNCTIONS IN NEW CODE!
  24. // They are obsolete, non-standard, and non-reentrant.
  25. #define _STREAM_COMPAT
  26. #include <iostream.h>
  27. extern "C++" {
  28. extern char* form(const char*, ...);
  29. extern char* dec(long, int=0);
  30. extern char* dec(int, int=0);
  31. extern char* dec(unsigned long, int=0);
  32. extern char* dec(unsigned int, int=0);
  33. extern char* hex(long, int=0);
  34. extern char* hex(int, int=0);
  35. extern char* hex(unsigned long, int=0);
  36. extern char* hex(unsigned int, int=0);
  37. extern char* oct(long, int=0);
  38. extern char* oct(int, int=0);
  39. extern char* oct(unsigned long, int=0);
  40. extern char* oct(unsigned int, int=0);
  41. char*        chr(char ch, int width = 0);
  42. char*        str(const char* s, int width = 0);
  43. inline istream& WS(istream& str) { return ws(str); }
  44. } // extern "C++"
  45. #endif /* !_COMPAT_STREAM_H */