QtMd/mainwindow.h

25 lines
324 B
C
Raw Permalink Normal View History

2024-01-04 17:48:00 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2024-01-05 17:26:18 +08:00
2024-01-04 17:48:00 +08:00
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H