mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-09 13:06:54 +03:00
16 lines
301 B
C++
16 lines
301 B
C++
|
|
#include <string>
|
|
|
|
|
|
class ClassLogFile
|
|
{
|
|
private:
|
|
std::string logfile;
|
|
public:
|
|
ClassLogFile(std::string _logfile);
|
|
|
|
void WriteToFile(std::string info, bool _time = true);
|
|
void WriteToDedicatedFile(std::string _fn, std::string info, bool _time = true);
|
|
};
|
|
|
|
extern ClassLogFile LogFile; |