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

STL

开发平台:

Visual C++

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1988, 1992, 1993 Free Software Foundation
  3.     written by Doug Lea (dl@rocky.oswego.edu)
  4. This file is part of the GNU IO Library.  This library is free
  5. software; you can redistribute it and/or modify it under the
  6. terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this library; see the file COPYING.  If not, write to the Free
  15. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  16. As a special exception, if you link this library with files
  17. compiled with a GNU compiler to produce an executable, this does not cause
  18. the resulting executable to be covered by the GNU General Public License.
  19. This exception does not however invalidate any other reasons why
  20. the executable file might be covered by the GNU General Public License. */
  21. #ifndef _SFile_h
  22. #ifdef __GNUG__
  23. #pragma interface
  24. #endif
  25. #define _SFile_h 1
  26. #include <fstream.h>
  27. extern "C++" {
  28. class SFile: public fstream
  29. {
  30.   protected:
  31.     int       sz;                   // unit size for structured binary IO
  32. public:
  33.     SFile() : fstream() { }
  34.     SFile(int fd, int size);
  35.     SFile(const char *name, int size, int mode, int prot=0664);
  36.     void open(const char *name, int size, int mode, int prot=0664);
  37.     
  38.     int       size() { return sz; }
  39.     int       setsize(int s) { int old = sz; sz = s; return old; }
  40.     
  41.     SFile&    get(void* x);
  42.     SFile&    put(void* x);
  43.     SFile&    operator[](long i);
  44. };
  45. } // extern "C++"
  46. #endif