mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 20:16:55 +03:00
23 lines
476 B
C++
23 lines
476 B
C++
#pragma once
|
|
#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";};
|
|
};
|
|
|