mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
23 lines
296 B
C
23 lines
296 B
C
|
#ifndef MAINFORM_H
|
||
|
#define MAINFORM_H
|
||
|
|
||
|
#include <QQtWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class MainForm;
|
||
|
}
|
||
|
|
||
|
class MainForm : public QQtWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainForm ( QWidget* parent = 0 );
|
||
|
~MainForm();
|
||
|
|
||
|
private:
|
||
|
Ui::MainForm* ui;
|
||
|
};
|
||
|
|
||
|
#endif // MAINFORM_H
|