/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license MPL v2.0 (see license file) */ #pragma once #include #include #include namespace appl { class Windows : public ewol::widget::Windows { private: ememory::SharedPtr m_env; ememory::SharedPtr m_camera; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); virtual ~Windows() { }; private: void onCallbackPeriodicUpdateCamera(const ewol::event::Time& _event); }; }