/** @file * @author Edouard DUPIN * @copyright 2019, Edouard DUPIN, all right reserved * @license MPL v2.0 (see license file) */ #pragma once #include #include namespace appl { class Windows : public ewol::widget::Windows { private: ememory::SharedPtr m_composer; protected: Windows(); void init() override; public: DECLARE_FACTORY(Windows); public: // callback functions void onCallbackRecord(); void onCallbackGenerate(); }; }