Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

40 строки
842 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_NetWork_Wifi "NetWork.Wifi"
  5. class NetWork_Wifi : public JObject
  6. {
  7. public:
  8. JStrObj Auth;
  9. JIntObj Channel;
  10. JBoolObj Enable;
  11. JStrObj EncrypType;
  12. JStrObj GateWay;
  13. JStrObj HostIP;
  14. JIntObj KeyType;
  15. JStrObj Keys;
  16. JStrObj NetType;
  17. JStrObj SSID;
  18. JStrObj Submask;
  19. public:
  20. NetWork_Wifi(JObject *pParent = NULL, const char *szName = JK_NetWork_Wifi):
  21. JObject(pParent,szName),
  22. Auth(this, "Auth"),
  23. Channel(this, "Channel"),
  24. Enable(this, "Enable"),
  25. EncrypType(this, "EncrypType"),
  26. GateWay(this, "GateWay"),
  27. HostIP(this, "HostIP"),
  28. KeyType(this, "KeyType"),
  29. Keys(this, "Keys"),
  30. NetType(this, "NetType"),
  31. SSID(this, "SSID"),
  32. Submask(this, "Submask"){
  33. };
  34. ~NetWork_Wifi(void){};
  35. };
  36. NS_NETSDK_CFG_END