/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __WORKER_CLOSE_ALL_FILE_H__ #define __WORKER_CLOSE_ALL_FILE_H__ #include #include #include namespace appl { class WorkerCloseAllFile : public ewol::object::Worker { protected: WorkerCloseAllFile(); void init(); public: DECLARE_FACTORY(WorkerCloseAllFile); virtual ~WorkerCloseAllFile(); private: std::vector m_bufferNameList; std::shared_ptr m_worker; //! pop-up element that is open... std::shared_ptr m_bufferManager; //!< handle on the buffer manager public: // callback function void onCallbackCloseDone(); }; }; #endif