PDF4QT/PdfForQtViewer/pdfviewermainwindow.h

31 lines
502 B
C
Raw Normal View History

2018-11-21 19:30:15 +01:00
#ifndef PDFVIEWERMAINWINDOW_H
#define PDFVIEWERMAINWINDOW_H
#include <QMainWindow>
namespace Ui
{
class PDFViewerMainWindow;
}
namespace pdfviewer
{
class PDFViewerMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit PDFViewerMainWindow(QWidget *parent = nullptr);
virtual ~PDFViewerMainWindow() override;
private:
void onActionOpenTriggered();
Ui::PDFViewerMainWindow* ui;
};
} // namespace pdfviewer
#endif // PDFVIEWERMAINWINDOW_H