/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license APACHE-2 (see license file) */ #ifndef __APPL_WINDOWS_H__ #define __APPL_WINDOWS_H__ #include #include #include namespace appl { class Windows : public ewol::widget::Windows { private: std::shared_ptr m_env; std::shared_ptr m_camera; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); virtual ~Windows() { }; private: void onCallbackPeriodicUpdateCamera(const ewol::event::Time& _event); }; }; #endif