fstreambase
class fstreambase : virtual public ios {
fstreambase();
fstreambase(int fd);
fstreambase(int fd, char *p, int l); /* Deprecated */
fstreambase(const char *name, int mode, int prot=0664);
fstreambase& raw() { rdbuf()->setbuf(NULL, 0); return *this; }
class ifstream : public fstreambase, public istream {
ifstream() : fstreambase() { }
ifstream(int fd) : fstreambase(fd) { }
ifstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
: fstreambase(name, mode | ios::in, prot) { }
{ fstreambase::open(name, mode | ios::in, prot); }
class ofstream : public fstreambase, public ostream {
ofstream() : fstreambase() { }
ofstream(int fd) : fstreambase(fd) { }
ofstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
: fstreambase(name, mode | ios::out, prot) { }
{ fstreambase::open(name, mode | ios::out, prot); }
class fstream : public fstreambase, public iostream {
fstream() : fstreambase() { }
fstream(int fd) : fstreambase(fd) { }
: fstreambase(name, mode, prot) { }
fstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/
{ fstreambase::open(name, mode, prot); }
fstreambase::__fb_init()
fstreambase::fstreambase()
fstreambase::fstreambase(int fd)
fstreambase::fstreambase(const char *name, int mode, int prot)
fstreambase::fstreambase(int fd, char *p, int l)
void fstreambase::open(const char *name, int mode, int prot)
void fstreambase::close()
void fstreambase::attach(int fd)