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.

28 lines
618 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_MobileDVR "MobileDVR"
  5. class MobileDVR : public JObject
  6. {
  7. public:
  8. JBoolObj CarPlateSet;
  9. JBoolObj DVRBootType;
  10. JBoolObj DelaySet;
  11. JBoolObj GpsTiming;
  12. JBoolObj StatusExchange;
  13. public:
  14. MobileDVR(JObject *pParent = NULL, const char *szName = JK_MobileDVR):
  15. JObject(pParent,szName),
  16. CarPlateSet(this, "CarPlateSet"),
  17. DVRBootType(this, "DVRBootType"),
  18. DelaySet(this, "DelaySet"),
  19. GpsTiming(this, "GpsTiming"),
  20. StatusExchange(this, "StatusExchange"){
  21. };
  22. ~MobileDVR(void){};
  23. };
  24. NS_NETSDK_CFG_END