25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
883 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "DSTEnd.h"
  4. #include "DSTStart.h"
  5. NS_NETSDK_CFG_BEGIN
  6. #define JK_General_Location "General.Location"
  7. class General_Location : public JObject
  8. {
  9. public:
  10. DSTEnd mDSTEnd;
  11. JStrObj DSTRule;
  12. DSTStart mDSTStart;
  13. JStrObj DateFormat;
  14. JStrObj DateSeparator;
  15. JStrObj Language;
  16. JStrObj TimeFormat;
  17. JStrObj VideoFormat;
  18. JIntObj WorkDay;
  19. public:
  20. General_Location(JObject *pParent = NULL, const char *szName = JK_General_Location):
  21. JObject(pParent,szName),
  22. mDSTEnd(this, "DSTEnd"),
  23. DSTRule(this, "DSTRule"),
  24. mDSTStart(this, "DSTStart"),
  25. DateFormat(this, "DateFormat"),
  26. DateSeparator(this, "DateSeparator"),
  27. Language(this, "Language"),
  28. TimeFormat(this, "TimeFormat"),
  29. VideoFormat(this, "VideoFormat"),
  30. WorkDay(this, "WorkDay"){
  31. };
  32. ~General_Location(void){};
  33. };
  34. NS_NETSDK_CFG_END