OPDefaultConfig.h 771 B

123456789101112131415161718192021222324252627282930313233343536
  1. #pragma once
  2. #import <FunSDK/JObject.h>
  3. #define JK_OPDefaultConfig "OPDefaultConfig"
  4. class OPDefaultConfig : public JObject
  5. {
  6. public:
  7. JIntObj General;
  8. JIntObj Encode;
  9. JIntObj Record;
  10. JIntObj CommPtz;
  11. JIntObj NetServer;
  12. JIntObj NetCommon;
  13. JIntObj Alarm;
  14. JIntObj Account;
  15. JIntObj Preview;
  16. JIntObj CameraPARAM;
  17. public:
  18. OPDefaultConfig(JObject *pParent = NULL, const char *szName = JK_OPDefaultConfig):
  19. JObject(pParent,szName),
  20. General(this, "General"),
  21. Encode(this, "Encode"),
  22. Record(this, "Record"),
  23. CommPtz(this, "CommPtz"),
  24. NetServer(this, "NetServer"),
  25. NetCommon(this, "NetCommon"),
  26. Alarm(this, "Alarm"),
  27. Account(this, "Account"),
  28. Preview(this, "Preview"),
  29. CameraPARAM(this, "CameraPARAM"){
  30. };
  31. ~OPDefaultConfig(void){};
  32. };