ConfigurerWS.h 378 B

1234567891011121314151617181920
  1. #pragma once
  2. namespace DIOS::Dev::Detail::MachineryECOM
  3. {
  4. class ConfigurerWS
  5. {
  6. public:
  7. static bool IsDoubleWorkstation();
  8. static string GetDefaultWS();
  9. static float GetDefaultSIDWall();
  10. static float GetTIDWall();
  11. static float GetDefaultAngleWall();
  12. static float GetDefaultSIDTable();
  13. static float GetTIDTable();
  14. static float GetDefaultAngleTable();
  15. };
  16. }