#include <fstream.h>
The ofstream class is an ostream derivative specialized for disk file output. All of its constructors automatically create and associate a filebuf buffer object.
The filebuf class documentation describes the get and put areas and their associated pointers. Only the put area and the put pointer are active for the ofstream class.
Construction/Destruction — Public Members
Constructs an ofstream object.
Destroys an ofstream object.
Operations — Public Members
Opens a file and attaches it to the filebuf object and thus to the stream.
Flushes any waiting output and closes the stream’s file.
Associates the specified reserve area to the stream’s filebuf object.
Sets the stream’s mode to binary or text.
Attaches the stream (through the filebuf object) to an open file.
Status/Information — Public Members
Gets the stream’s filebuf object.
Returns the file descriptor associated with the stream.
Tests whether the stream’s file is open.