home *** CD-ROM | disk | FTP | other *** search
- #ifndef TXTLOG_H
- #define TXTLOG_H
-
- #include "Log.h"
- #include <stdio.h>
-
- class TxtLog : public Log
- {
- public:
- TxtLog(const String & fname, const String & header);
- virtual ~TxtLog();
- virtual void error(const String & str);
- virtual void message(const String & str);
- virtual void warning(const String & str);
- private:
- FILE * file;
- };
- #endif //TXTLOG_H