| 12345678910111213141516171819202122232425262728 |
- #pragma once
- #import <FunSDK/JObject.h>
- #include "EventHandler.h"
- #include "PirTimeSection.h"
- #define JK_Alarm_PIR "Alarm.PIR"
- class Alarm_PIR : public JObject
- {
- public:
- JBoolObj Enable;
- EventHandler mEventHandler;
- JIntObj Level;
- JIntObj PIRCheckTime;
- PirTimeSection mPirTimeSection;
- public:
- Alarm_PIR(JObject *pParent = NULL, const char *szName = JK_Alarm_PIR):
- JObject(pParent,szName),
- Enable(this, "Enable"),
- mEventHandler(this, "EventHandler"),
- Level(this, "Level"),
- PIRCheckTime(this, "PIRCheckTime"),
- mPirTimeSection(this, "PirTimeSection"){
- };
- ~Alarm_PIR(void){};
- };
|