#ifndef FASTFILEVIEWER_H #define FASTFILEVIEWER_H #include "fastfile.h" #include namespace Ui { class FFViewer; } class FastFileViewer : public QWidget { Q_OBJECT public: explicit FastFileViewer(QWidget *parent = nullptr); ~FastFileViewer(); void SetFastFile(const FastFile *aFastFile); private: Ui::FFViewer *ui; const FastFile* mFastFile; }; #endif // FASTFILEVIEWER_H