mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-09-16 18:54:54 +00:00
29 lines
548 B
C++
29 lines
548 B
C++
#ifndef INTBASICFILEVIEWER_H
|
|
#define INTBASICFILEVIEWER_H
|
|
|
|
#include "fileviewerinterface.h"
|
|
#include "IntBasicFile.h"
|
|
|
|
namespace Ui {
|
|
class IntBasicFileViewer;
|
|
}
|
|
|
|
class IntBasicFileViewer : public FileViewerInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit IntBasicFileViewer(QWidget *parent = nullptr);
|
|
~IntBasicFileViewer();
|
|
|
|
bool optionsMenuItems(QMenu * /*menu*/) { return false; }
|
|
|
|
public slots:
|
|
void setFile(GenericFile *file);
|
|
|
|
private:
|
|
Ui::IntBasicFileViewer *ui;
|
|
};
|
|
|
|
#endif // INTBASICFILEVIEWER_H
|