/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license BSD 3 clauses (see license file) */ #pragma once #include #include namespace appl { class Windows : public ewol::widget::Windows { private: std::shared_ptr m_composer; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); public: // callback functions void onCallbackRecord(); void onCallbackGenerate(); }; }