CEventCalib.h 206 B

1234567891011121314151617
  1. #pragma once
  2. #include "CEventBase.h"
  3. class CEventCalib :
  4. public CEventBase
  5. {
  6. public:
  7. CEventCalib(int funID);
  8. private:
  9. LONG Action();
  10. bool StopStepException();
  11. private:
  12. int m_iFunctionId = 0;
  13. };