builtinbuf.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 _BUILTINBUF_H
  21. #define _BUILTINBUF_H
  22. #ifdef __GNUC__
  23. #pragma interface
  24. #endif
  25. #include <streambuf.h>
  26. #if !_IO_UNIFIED_JUMPTABLES
  27. // A builtinbuf is a streambuf where all the virtual operations
  28. // call the _IO_jump_t table.
  29. extern "C++" {
  30. class builtinbuf : public streambuf {
  31.   friend ios;
  32.   virtual int overflow(int);
  33.   virtual int underflow();
  34.   virtual streamsize xsgetn(char *, streamsize);
  35.   virtual streamsize xsputn(const char *, streamsize);
  36.   virtual streambuf* setbuf(char*, int);
  37.   virtual int doallocate();
  38.   virtual ~builtinbuf();
  39.   virtual int sync();
  40.   virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
  41.   virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
  42.   virtual int pbackfail(int c);
  43.   virtual streamsize sys_read(char* buf, streamsize size);
  44.   virtual streampos sys_seek(streamoff, _seek_dir);
  45.   virtual streamsize sys_write(const char*, streamsize);
  46.   virtual int sys_stat(void*); // Actually, a (struct stat*)
  47.   virtual int sys_close();
  48. #if 0
  49.   virtual int get_column();
  50.   virtual int set_column(int);
  51. #endif
  52.  private:
  53.   builtinbuf() { }
  54. };
  55. } // extern "C++"
  56. #endif
  57. #endif /* _BUILTINBUF_H */