Add actions for peak and star find

This commit is contained in:
2019-09-28 10:57:48 +02:00
parent c4f25c32ed
commit b5d63a6185
7 changed files with 68 additions and 17 deletions
+3 -2
View File
@@ -3,6 +3,7 @@
#include <QRunnable>
#include <QString>
#include "imageinfo.h"
class Image;
@@ -10,9 +11,9 @@ class LoadRunable : public QRunnable
{
QString m_file;
Image *m_receiver;
bool m_calculateStats;
AnalyzeLevel m_analyzeLevel;
public:
LoadRunable(const QString &file, Image *receiver, bool stats);
LoadRunable(const QString &file, Image *receiver, AnalyzeLevel level);
void run();
};