home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0639.ZIP / CCE_0639 / GPP / GXXINC.ZOO / xfilebuf.h < prev    next >
C/C++ Source or Header  |  1991-07-10  |  2KB  |  73 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24. #ifndef _Filebuf_h
  25. #ifdef __GNUG__
  26. #pragma once
  27. #pragma interface
  28. #endif
  29. #define _Filebuf_h 1
  30.  
  31. #include <xfile.h>
  32. #include <streambu.h>
  33.  
  34. class Filebuf: public streambuf // libg++ File version
  35. {
  36. public:
  37.   File*       Fp;
  38.  
  39.   void        init_streambuf_ptrs();
  40.  
  41.   int         overflow(int c = EOF);
  42.   int         underflow();
  43.  
  44.               Filebuf();
  45.               Filebuf(const char* filename, io_mode m, access_mode a);
  46.               Filebuf(const char* filename, const char* m);   
  47.               Filebuf(int filedesc, io_mode m);
  48.               Filebuf(FILE* fileptr);
  49.   
  50.              ~Filebuf();
  51.  
  52.   const char* name();
  53. #ifdef atarist
  54.   streambuf*  setbuf(char* buf, size_t buflen, size_t preloaded_count = 0);
  55. #else
  56.   streambuf*  setbuf(char* buf, int buflen, int preloaded_count = 0);
  57. #endif
  58.  
  59.   streambuf*  open(const char* name, open_mode m);
  60.   streambuf*  open(const char* filename, io_mode m, access_mode a);
  61.   streambuf*  open(const char* filename, const char* m);
  62.   streambuf*  open(int  filedesc, io_mode m);
  63.   streambuf*  open(FILE* fileptr);
  64.  
  65.   int         is_open();
  66.   int         close();
  67.  
  68.   void        error();
  69. };
  70.  
  71.  
  72. #endif
  73.