Update 20200925

This commit is contained in:
jomjol
2020-09-25 08:42:45 +02:00
parent 0868c22ac6
commit a08144cc9f
15 changed files with 392 additions and 25 deletions

View File

@@ -6,9 +6,12 @@ class ClassLogFile
{
private:
std::string logfile;
bool doLogFile;
public:
ClassLogFile(std::string _logfile);
void SwitchOnOff(bool _doLogFile);
void WriteToFile(std::string info, bool _time = true);
void WriteToDedicatedFile(std::string _fn, std::string info, bool _time = true);
};