No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
447 B

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