ClassFlowWriteList.h 476 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "ClassFlow.h"
  3. #include "ClassFlowPostProcessing.h"
  4. #include <string>
  5. class ClassFlowWriteList :
  6. public ClassFlow
  7. {
  8. protected:
  9. ClassFlowPostProcessing* flowpostprocessing;
  10. void SetInitialParameter(void);
  11. public:
  12. ClassFlowWriteList();
  13. ClassFlowWriteList(std::vector<ClassFlow*>* lfc);
  14. bool ReadParameter(FILE* pfile, string& aktparamgraph);
  15. bool doFlow(string time);
  16. string name(){return "ClassFlowWriteList";};
  17. };