34 std::ofstream m_of; //!< The actual output file stream.
35
36public:
37 /** Constructor
38 * \param fileName The file to be open in this stream
39 * \param append If set to true, the file will be opened for writing and the current cursor position set at the end of the file. Otherwise, previous contents will be lost.
40 * \exception std::exception if the file cannot be opened.
51 * \param fileName The file to be open in this stream
52 * \param append If set to true, the file will be opened for writing and the current cursor position set at the end of the file. Otherwise, previous contents will be lost.