Detect_HumanDetectionDVR.h 549 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #import "FunSDK/JObject.h"
  3. #include "EventHandler.h"
  4. #define JK_Detect_HumanDetectionDVR "Detect.HumanDetectionDVR"
  5. class Detect_HumanDetectionDVR : public JObject
  6. {
  7. public:
  8. JBoolObj Enable;
  9. EventHandler mEventHandler;
  10. JIntObj LoiterLatch;
  11. public:
  12. Detect_HumanDetectionDVR(JObject *pParent = NULL, const char *szName = JK_Detect_HumanDetectionDVR):
  13. JObject(pParent,szName),
  14. Enable(this, "Enable"),
  15. mEventHandler(this, "EventHandler"),
  16. LoiterLatch(this, "LoiterLatch"){
  17. };
  18. ~Detect_HumanDetectionDVR(void){};
  19. };