mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
27 lines
571 B
C++
27 lines
571 B
C++
#pragma once
|
|
|
|
#ifndef CLASSFFLOWPWRITELIST_H
|
|
#define CLASSFFLOWPWRITELIST_H
|
|
|
|
#include "ClassFlow.h"
|
|
#include "ClassFlowPostProcessing.h"
|
|
|
|
#include <string>
|
|
|
|
class ClassFlowWriteList :
|
|
public ClassFlow
|
|
{
|
|
protected:
|
|
ClassFlowPostProcessing* flowpostprocessing;
|
|
void SetInitialParameter(void);
|
|
|
|
public:
|
|
ClassFlowWriteList();
|
|
ClassFlowWriteList(std::vector<ClassFlow*>* lfc);
|
|
|
|
bool ReadParameter(FILE* pfile, string& aktparamgraph);
|
|
bool doFlow(string time);
|
|
string name(){return "ClassFlowWriteList";};
|
|
};
|
|
|
|
#endif //CLASSFFLOWPWRITELIST_H
|