ClassFlowImage.h 497 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "ClassFlow.h"
  3. using namespace std;
  4. class ClassFlowImage : public ClassFlow
  5. {
  6. protected:
  7. string LogImageLocation;
  8. bool isLogImage;
  9. unsigned short logfileRetentionInDays;
  10. const char* logTag;
  11. string CreateLogFolder(string time);
  12. void LogImage(string logPath, string name, float *resultFloat, int *resultInt, string time);
  13. public:
  14. ClassFlowImage(const char* logTag);
  15. ClassFlowImage(std::vector<ClassFlow*> * lfc, const char* logTag);
  16. void RemoveOldLogs();
  17. };