ClassFlowAlignment.h 604 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #include "ClassFlow.h"
  3. #include "Helper.h"
  4. #include <string>
  5. using namespace std;
  6. class ClassFlowAlignment :
  7. public ClassFlow
  8. {
  9. protected:
  10. float initalrotate;
  11. bool initialmirror;
  12. string reffilename[2];
  13. int ref_x[2], ref_y[2];
  14. int anz_ref;
  15. int suchex, suchey;
  16. string namerawimage;
  17. public:
  18. ClassFlowAlignment();
  19. ClassFlowAlignment(std::vector<ClassFlow*>* lfc);
  20. bool ReadParameter(FILE* pfile, string& aktparamgraph);
  21. bool doFlow(string time);
  22. string getHTMLSingleStep(string host);
  23. string name(){return "ClassFlowAlignment";};
  24. };