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

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 _FSTREAM_H
  21. #define _FSTREAM_H
  22. #ifdef __GNUG__
  23. #pragma interface
  24. #endif
  25. #include <iostream.h>
  26. extern "C++" {
  27. class fstreambase : virtual public ios {
  28. #ifdef _IO_NEW_STREAMS
  29.     mutable filebuf __my_fb; // mutable so rdbuf() can be const
  30. #endif
  31.     void __fb_init ();
  32.   public:
  33.     fstreambase();
  34.     fstreambase(int fd);
  35.     fstreambase(int fd, char *p, int l); /* Deprecated */
  36.     fstreambase(const char *name, int mode, int prot=0664);
  37.     void close();
  38. #ifdef _IO_NEW_STREAMS
  39.     filebuf* rdbuf() const { return &__my_fb; }
  40. #else
  41.     filebuf* rdbuf() const { return (filebuf*) ios::rdbuf(); }
  42. #endif
  43.     void open(const char *name, int mode, int prot=0664);
  44.     int is_open() const { return rdbuf()->is_open(); }
  45.     void setbuf(char *ptr, int len) { rdbuf()->setbuf(ptr, len); }
  46.     void attach(int fd);
  47. #ifdef _STREAM_COMPAT
  48.     int filedesc() { return rdbuf()->fd(); }
  49.     fstreambase& raw() { rdbuf()->setbuf(NULL, 0); return *this; }
  50. #endif
  51. };
  52. class ifstream : public fstreambase, public istream {
  53.   public:
  54.     ifstream() : fstreambase() { }
  55.     ifstream(int fd) : fstreambase(fd) { }
  56.     ifstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
  57.     ifstream(const char *name, int mode=ios::in, int prot=0664)
  58. : fstreambase(name, mode, prot) { }
  59.     void open(const char *name, int mode=ios::in, int prot=0664)
  60. { fstreambase::open(name, mode, prot); }
  61. };
  62. class ofstream : public fstreambase, public ostream {
  63.   public:
  64.     ofstream() : fstreambase() { }
  65.     ofstream(int fd) : fstreambase(fd) { }
  66.     ofstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
  67.     ofstream(const char *name, int mode=ios::out, int prot=0664)
  68. : fstreambase(name, mode, prot) { }
  69.     void open(const char *name, int mode=ios::out, int prot=0664)
  70. { fstreambase::open(name, mode, prot); }
  71. };
  72. class fstream : public fstreambase, public iostream {
  73.   public:
  74.     fstream() : fstreambase() { }
  75.     fstream(int fd) : fstreambase(fd) { }
  76.     fstream(const char *name, int mode, int prot=0664)
  77. : fstreambase(name, mode, prot) { }
  78.     fstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
  79.     void open(const char *name, int mode, int prot=0664)
  80. { fstreambase::open(name, mode, prot); }
  81. };
  82. } // extern "C++"
  83. #endif /*!_FSTREAM_H*/