DSTStart.h 477 B

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