CPCRule.h 643 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #import "FunSDK/JObject.h"
  3. #define JK_CPCRule "CPCRule" //暂时不需要设置这个类型
  4. class CPCRule : public JObject
  5. {
  6. public:
  7. JIntObj Countmax;
  8. JIntObj EnterDirection;
  9. JStrObj Flag;
  10. JObjArray<JObject> Points;
  11. JIntObj Sensitivity;
  12. JIntObj Sizemax;
  13. JIntObj Sizemin;
  14. public:
  15. CPCRule(JObject *pParent = NULL, const char *szName = JK_CPCRule):
  16. JObject(pParent,szName),
  17. Countmax(this, "Countmax"),
  18. EnterDirection(this, "EnterDirection"),
  19. Flag(this, "Flag"),
  20. Points(this, "Points"),
  21. Sensitivity(this, "Sensitivity"),
  22. Sizemax(this, "Sizemax"),
  23. Sizemin(this, "Sizemin"){
  24. };
  25. ~CPCRule(void){};
  26. };