1234567891011121314151617181920 |
- #pragma once
- namespace DIOS::Dev::Detail::MachineryECOM
- {
- class ConfigurerWS
- {
- public:
- static bool IsDoubleWorkstation();
- static string GetDefaultWS();
- static float GetDefaultSIDWall();
- static float GetTIDWall();
- static float GetDefaultAngleWall();
- static float GetDefaultSIDTable();
- static float GetTIDTable();
- static float GetDefaultAngleTable();
- };
- }
|