#ifndef __CONVERSIONTASK_H__ #define __CONVERSIONTASK_H__ #include namespace openspace { namespace dataconverter { class ConversionTask { public: virtual void perform(const std::function& onProgress) = 0; }; } } #endif