ClassFlowAlignment.h 580 B

1234567891011121314151617181920212223242526272829
  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. string reffilename[2];
  12. int ref_x[2], ref_y[2];
  13. int anz_ref;
  14. int suchex, suchey;
  15. string namerawimage;
  16. public:
  17. ClassFlowAlignment();
  18. ClassFlowAlignment(std::vector<ClassFlow*>* lfc);
  19. bool ReadParameter(FILE* pfile, string& aktparamgraph);
  20. bool doFlow(string time);
  21. string getHTMLSingleStep(string host);
  22. string name(){return "ClassFlowAlignment";};
  23. };