1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/examples/qqtframe3/mainwindow.h

18 lines
223 B
C
Raw Normal View History

2017-10-27 12:35:11 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
2017-10-28 17:36:32 +08:00
#include <QDialog>
2017-10-27 12:35:11 +08:00
2017-10-28 17:36:32 +08:00
class MainWindow : public QDialog
2017-10-27 12:35:11 +08:00
{
Q_OBJECT
public:
2017-10-28 17:36:32 +08:00
explicit MainWindow(QWidget* parent = 0);
2017-10-27 12:35:11 +08:00
~MainWindow();
private:
};
#endif // MAINWINDOW_H