CommFunction.h 387 B

1234567891011121314151617181920
  1. #pragma once
  2. #import "FunSDK/JObject.h"
  3. #define JK_CommFunction "CommFunction"
  4. class CommFunction : public JObject
  5. {
  6. public:
  7. JBoolObj CommRS232;
  8. JBoolObj CommRS485;
  9. public:
  10. CommFunction(JObject *pParent = NULL, const char *szName = JK_CommFunction):
  11. JObject(pParent,szName),
  12. CommRS232(this, "CommRS232"),
  13. CommRS485(this, "CommRS485"){
  14. };
  15. ~CommFunction(void){};
  16. };