1
0

First prototype

This commit is contained in:
2020-01-21 21:23:45 +01:00
commit 66b14d5964
6 changed files with 194 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QLabel>
class MainWindow : public QMainWindow
{
Q_OBJECT
QLabel *_image;
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
public slots:
void openFile();
void saveFile();
private:
void setupUI();
};
#endif // MAINWINDOW_H