Add saving to FITS and XISF

This commit is contained in:
2022-04-19 16:57:54 +02:00
parent f68a9c4d7c
commit 92f9920f24
6 changed files with 198 additions and 4 deletions
+9
View File
@@ -21,4 +21,13 @@ public:
void run();
};
class ConvertRunable : public QRunnable
{
QString m_infile;
QString m_outfile;
public:
ConvertRunable(const QString &in, const QString &out);
void run();
};
#endif // LOADRUNABLE_H