00001 #ifndef SCTAPI_LOG_H 00002 #define SCTAPI_LOG_H 00003 00004 #include <string> 00005 #include <fstream> 00006 00011 class Log : public std::ofstream { 00012 public: 00014 Log(); 00016 Log(std::string fname); 00018 Log(std::string fname, int instance); 00020 ~Log(); 00021 }; 00022 00023 #endif