iVS3D v2.0.0
Loading...
Searching...
No Matches
settingsthread.h
1#ifndef SETTINGSTHREAD_H
2#define SETTINGSTHREAD_H
3
4#include "algorithmthread.h"
5
18class SettingsThread : public AlgorithmThread<QMap<QString, QVariant>>
19{
20public:
25 SettingsThread(Progressable *receiver, const std::vector<uint> &images, volatile bool *stopped, int pluginIdx, bool useCuda);
26protected:
30 void run() override;
31};
32
33#endif // SETTINGSTHREAD_H
The AlgorithmThread class is used to start the execution of a major plugin task on a new thread....
Definition algorithmthread.h:27
The Progressable interface is used to by multithreaded actions such as sampling or exporting to repor...
Definition progressable.h:18
The SettingsThread class is a derivived class of Algorithmthread and is used to execute the generateS...
Definition settingsthread.h:19
void run() override
QThread mehtod which executes the generateSettings method of the specified plugin.
Definition settingsthread.cpp:8