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.

30 line
532 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_DSTEnd "DSTEnd"
  5. class DSTEnd : public JObject
  6. {
  7. public:
  8. JIntObj Day;
  9. JIntObj Hour;
  10. JIntObj Minute;
  11. JIntObj Month;
  12. JIntObj Week;
  13. JIntObj Year;
  14. public:
  15. DSTEnd(JObject *pParent = NULL, const char *szName = JK_DSTEnd):
  16. JObject(pParent,szName),
  17. Day(this, "Day"),
  18. Hour(this, "Hour"),
  19. Minute(this, "Minute"),
  20. Month(this, "Month"),
  21. Week(this, "Week"),
  22. Year(this, "Year"){
  23. };
  24. ~DSTEnd(void){};
  25. };
  26. NS_NETSDK_CFG_END