ILandmarkController.h 423 B

12345678910111213141516171819
  1. #pragma once
  2. #include "IComponentController.h"
  3. namespace DiosCtrlBox
  4. {
  5. class ILandmarkController : public IComponentController
  6. {
  7. public:
  8. ILandmarkController(){}
  9. ~ILandmarkController(){}
  10. public:
  11. virtual int ReadTubeAngleLowLandmarkStatus() = 0;
  12. virtual int ReadTubeAngleHighLandmarkStatus() = 0;
  13. virtual int ReadTubeHeightLowLandmarkStatus() = 0;
  14. virtual int ReadTubeHeightHighLandmarkStatus() = 0;
  15. };
  16. }