mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 03:00:58 -06:00
18 lines
278 B
C++
18 lines
278 B
C++
#ifndef __CONVERSIONTASK_H__
|
|
#define __CONVERSIONTASK_H__
|
|
|
|
#include <functional>
|
|
|
|
namespace openspace {
|
|
namespace dataconverter {
|
|
|
|
class ConversionTask {
|
|
public:
|
|
virtual void perform(const std::function<void(float)>& onProgress) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __CONVERSIONTASK_H__
|