#ifndef _OWLPS_POSITIONING_TEXTFILEWRITER_HH_ #define _OWLPS_POSITIONING_TEXTFILEWRITER_HH_ #include #include /// Writes text to a file /** * If the file name is a dash ('-'), the standard output is used. */ class TextFileWriter { private: /// Name of the output file std::string file_name ; /// Stream associated with the file std::ofstream file ; /// Original rdbuf of the stream std::streambuf *file_buf ; public: TextFileWriter(const std::string &_file_name) ; virtual ~TextFileWriter(void) ; bool write_text(const std::string &text) ; } ; #endif // _OWLPS_POSITIONING_TEXTFILEWRITER_HH_