You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
513 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "PowerSocketAutoSwitchItem.h"
  4. NS_NETSDK_CFG_BEGIN
  5. #define JK_PowerSocket_AutoSwitch "PowerSocket.AutoSwitch"
  6. class PowerSocket_AutoSwitch : public JObject
  7. {
  8. public:
  9. JObjArray<PowerSocketAutoSwitchItem> AutoSwitch;
  10. public:
  11. PowerSocket_AutoSwitch(JObject *pParent = NULL, const char *szName = JK_PowerSocket_AutoSwitch):
  12. JObject(pParent,szName),
  13. AutoSwitch(this, ""){
  14. };
  15. ~PowerSocket_AutoSwitch(void){};
  16. };
  17. NS_NETSDK_CFG_END