CLASS
1.1
|
00001 00002 #ifndef _LOGFILE_CLASS 00003 #define _LOGFILE_CLASS 00004 00005 00016 #include <string> 00017 #include <fstream> 00018 #include "stdlib.h" 00019 using namespace std; 00020 00021 00022 class LogFile 00023 { 00024 public: 00025 LogFile(string LogFileName ); 00026 ~LogFile(); 00027 00028 std::ofstream fLog; 00029 00030 }; 00031 00032 #endif 00033