/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __WORKER_SAVE_ALL_FILE_H__ #define __WORKER_SAVE_ALL_FILE_H__ #include #include #include namespace appl { class WorkerSaveAllFile : public ewol::object::Worker { protected: WorkerSaveAllFile(); void init(); public: DECLARE_FACTORY(WorkerSaveAllFile); virtual ~WorkerSaveAllFile(); 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 onCallbackSaveAsDone(); }; }; #endif