home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 May / Game.EXE_05_2002.iso / Alawar / Lib / Log / TxtLog.h < prev   
Encoding:
C/C++ Source or Header  |  2002-03-24  |  406 b   |  19 lines

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