17 lines
263 B
C
17 lines
263 B
C
|
|
#ifndef MAINWINDOW_H
|
||
|
|
#define MAINWINDOW_H
|
||
|
|
|
||
|
|
#include "ui_mainwindow.h"
|
||
|
|
|
||
|
|
#include <QMainWindow>
|
||
|
|
|
||
|
|
class MainWindow : public QMainWindow, private Ui::MainWindow
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
MainWindow(QWidget *parent = nullptr);
|
||
|
|
~MainWindow();
|
||
|
|
};
|
||
|
|
#endif // MAINWINDOW_H
|