📄 strstream.h
字号:
/*ident "@(#)ctrans:incl-master/const-headers/strstream.h 1.7" *//******************************************************************************* C++ source for the C++ Language System, Release 3.0. This productis a new release of the original cfront developed in the computerscience research center of AT&T Bell Laboratories.Copyright (c) 1991 AT&T and UNIX System Laboratories, Inc.Copyright (c) 1984, 1989, 1990 AT&T. All Rights Reserved.THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of AT&T and UNIX SystemLaboratories, Inc. The copyright notice above does not evidenceany actual or intended publication of such source code.*******************************************************************************/#ifndef STRSTREAMH#define STRSTREAMH#ifndef IOSTREAMH#include <iostream.h>#endifclass strstreambuf : public streambuf{public: strstreambuf() ; strstreambuf(int) ; strstreambuf(void* (*a)(long), void (*f)(void*)) ; strstreambuf(char* b, int size, char* pstart = 0 ) ; strstreambuf(unsigned char* b, int size, unsigned char* pstart = 0 ) ;#ifndef __cplusplus2 int pcount();#endif void freeze(int n=1) ; char* str() ; ~strstreambuf() ;public: /* virtuals */ virtual int doallocate() ; virtual int overflow(int) ; virtual int underflow() ; virtual streambuf* setbuf(char* p, int l) ; virtual streampos#ifdef __cplusplus2 seekoff(streamoff,seek_dir,int) ;#else seekoff(streamoff,ios::seek_dir,int) ;#endifprivate: void init(char*,int,char*) ; void* (*afct)(long) ; void (*ffct)(void*) ; int ignore_oflow ; int froozen ; int auto_extend ;public:#ifndef __cplusplus2 int isfrozen() { return froozen; }#endif } ;class strstreambase : public virtual ios {public: strstreambuf* rdbuf() ;protected: strstreambase(char*, int, char*) ; strstreambase() ; ~strstreambase() ;private: strstreambuf buf ; } ;class istrstream : public strstreambase, public istream {public: istrstream(char* str); istrstream(char* str, int size ) ;#ifndef __cplusplus2 istrstream(const char* str); istrstream(const char* str, int size);#endif ~istrstream() ; } ;class ostrstream : public strstreambase, public ostream {public: ostrstream(char* str, int size, int=ios::out) ; ostrstream() ; ~ostrstream() ; char* str() ; int pcount() ; } ;class strstream : public strstreambase, public iostream {public: strstream() ; strstream(char* str, int size, int mode) ; ~strstream() ; char* str() ; } ;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -