#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(std::shared_ptr aFastFile); private: Ui::FFViewer *ui; std::shared_ptr mFastFile; }; #endif // FASTFILEVIEWER_H