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

28 lines
471 B
C
Raw Normal View History

2017-09-05 18:07:05 +08:00
#ifndef QQTWINDOW_H
#define QQTWINDOW_H
#include <QStackedWidget>
namespace Ui {
class QQTWindow;
}
/**
* @brief The QQTWindow class
* 绿 绿
*
*/
class QQTWindow : public QStackedWidget
{
Q_OBJECT
public:
explicit QQTWindow(QWidget *parent = 0);
~QQTWindow();
private:
Ui::QQTWindow *ui;
};
#endif // QQTWINDOW_H