Better handling of FITS records

This commit is contained in:
2022-06-17 00:31:27 +02:00
parent 46215c7a7d
commit 19ed5ae1a4
3 changed files with 52 additions and 12 deletions
+5
View File
@@ -5,12 +5,17 @@
#include <wcslib/wcs.h>
#include <cmath>
namespace pcl { class FITSHeaderKeyword; }
struct FITSRecord
{
QByteArray key;
QVariant value;
QByteArray comment;
bool editable() const;
FITSRecord(const QByteArray &key, const QVariant &value, const QByteArray &comment);
FITSRecord(const pcl::FITSHeaderKeyword &record);
QByteArray valueToByteArray() const;
};
class SkyPoint