LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
ValueChangeEvent.h
1 #ifndef VALUE_CHANGE_EVENT_H_
2 #define VALUE_CHANGE_EVENT_H_
3 
4 #include "Event.h"
5 
9 template<typename T> class ValueChangeEvent : public Event
10 {
11 public:
12  ValueChangeEvent(T* variable, T value);
13  virtual ~ValueChangeEvent();
14 
15  virtual bool CheckCondition();
16 
17 private:
18  T* m_variable;
19  T m_value;
20 };
21 
22 #endif