UniWidgets  1.0.0
StateLogic.h
00001 #ifndef _STATELOGIC_H
00002 #define _STATELOGIC_H
00003 // -------------------------------------------------------------------------
00004 #include <objects/StateTmpLogic.h>
00005 #include <plugins.h>
00006 // -------------------------------------------------------------------------
00007 namespace UniWidgets
00008 {
00009 class Image;
00017 class StateLogic : public StateTmpLogic<Image>
00018 {
00019 public:
00020     StateLogic();
00021     explicit StateLogic(StateTmpLogic<Image>::BaseObjectType* gobject);
00022     virtual ~StateLogic();
00023 //  bool state_blink;/*Переменная, которая вкл/выкл способность мигать*/
00024 protected: 
00025 //  void sensor_handler(UniSetTypes::ObjectId sensor, UniSetTypes::ObjectId node, long value);
00026     DISALLOW_COPY_AND_ASSIGN(StateLogic);
00027 private:
00028     void constructor();
00029 };
00030 
00031 }
00032 #endif