UniWidgets  1.0.0
StateTextLogic.h
00001 #ifndef _STATETEXTLOGIC_H
00002 #define _STATETEXTLOGIC_H
00003 // -------------------------------------------------------------------------
00004 #include <objects/StateTmpLogic.h>
00005 // -------------------------------------------------------------------------
00006 namespace UniWidgets
00007 {
00008 class Text;
00016 class StateTextLogic : public StateTmpLogic<SimpleText>
00017 {
00018 public:
00019     StateTextLogic();
00020     explicit StateTextLogic(StateTmpLogic<SimpleText>::BaseObjectType* gobject);
00021     virtual ~StateTextLogic();
00022 
00023 protected:
00024     DISALLOW_COPY_AND_ASSIGN(StateTextLogic);
00025 
00026 private:
00027     void constructor();
00028 };
00029 
00030 }
00031 
00032 #endif