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