Class |
Contents |
filebuf |
it is used to set the file buffers to read and write contains openprot constant used in the open() of file stream classes. Also contain close() and open() as members |
fstreambase |
provides operations common to the file streams, serves as a base for fstrea, ifstream and ofstream class. contains open() and close() functions |
ifstream |
provides input operations. contains open() with default input mode.inherit the functions get(), getline(), read(),seekg() and tellg()
functions from istream |
ofstream |
provides output operations, contains open() with default output mode inherits puts(), seekp(),tellp(), and write() functions from ostream |
fstream |
provides support for simultaneous input and output operations, contains open() with default input mode. Inherits all the functions from istream and ostream classses through iostream
|