00001 #ifndef SCTAPI_LOG_H 00002 #define SCTAPI_LOG_H 00003 00004 #include <fstream> 00005 00010 class Log : public std::ofstream { 00011 public: 00013 Log(); 00015 Log(std::string fname); 00017 Log(std::string fname, int instance); 00019 ~Log(); 00020 }; 00021 00022 #endif