Rogue Wave banner
Previous fileTop of documentContentsIndexNext file

RWvios

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

Synopsis

#include <vstream.h>

(abstract base class)

Description

RWvios is an abstract base class. It defines an interface similar to the C++ streams class ios. However, unlike ios, it offers the advantage of not necessarily being associated with a streambuf.

This is useful for classes that cannot use a streambuf in their implementation. An example of such a class is RWXDRistream, where the XDR model does not permit streambuf functionality.

Specializing classes that do use streambufs in their implementation (e.g., RWpistream) can usually just return the corresponding ios function.

Persistence

None

Public Member Functions

virtual int
eof() = 0;
virtual int
fail() = 0; 
virtual int
bad() = 0; 
virtual int
good() = 0; 
virtual int
rdstate() = 0; 
virtual void
clear(int v=0) = 0; 
operator void*();


Previous fileTop of documentContentsIndexNext file
©Copyright 1999, Rogue Wave Software, Inc.
Send mail to report errors or comment on the documentation.