/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #ifndef __TEST_LABEL_H__ #define __TEST_LABEL_H__ #include #include #include #include #include #include namespace appl { class TestLabel : public ewol::widget::Sizer { private: std::shared_ptr m_testWidget; int32_t m_labelId; public: /** * @brief Constructeur */ TestLabel(); void init(); public: DECLARE_FACTORY(TestLabel); /** * @brief Destructor */ virtual ~TestLabel() {}; public: // Derived function virtual void onReceiveMessage(const ewol::object::Message& _msg); }; }; #endif