This commit is contained in:
Maicss
2020-06-17 16:52:52 +08:00
parent 7706414ff9
commit 873c52e602
12 changed files with 1749 additions and 29 deletions

21
mainwindow.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <DMainWindow>
#include "widget.h"
DWIDGET_USE_NAMESPACE
class MainWindow : public DMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Widget *w;
};
#endif // MAINWINDOW_H