home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 April / Game.EXE_04_2002.iso / Alawar / TxtLog.h < prev   
Encoding:
C/C++ Source or Header  |  2002-02-18  |  369 b   |  18 lines

  1. #ifndef TXTLOG_H
  2. #define TXTLOG_H
  3.  
  4. #include "Log.h"
  5. #include <stdio.h>
  6.  
  7. class TxtLog : public Log
  8. {
  9. public:
  10.     TxtLog(const String & fname, const String & header);
  11.     virtual ~TxtLog();
  12.     virtual void error(const String & str);
  13.     virtual void message(const String & str);
  14.     virtual void warning(const String & str);
  15. private:
  16.     FILE * file;
  17. };
  18. #endif //TXTLOG_H