ClassFlowWriteList.h 571 B

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