| 12345678910111213141516171819202122 |
- #pragma once
- #include "ClassFlow.h"
- using namespace std;
- class ClassFlowImage : public ClassFlow
- {
- protected:
- string LogImageLocation;
- bool isLogImage;
- unsigned short logfileRetentionInDays;
- const char* logTag;
- string CreateLogFolder(string time);
- void LogImage(string logPath, string name, float *resultFloat, int *resultInt, string time);
- public:
- ClassFlowImage(const char* logTag);
- ClassFlowImage(std::vector<ClassFlow*> * lfc, const char* logTag);
- void RemoveOldLogs();
- };
|