1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/qqtdialog.h
tianduanrui 3f857669fc init
2016-12-29 16:49:18 +08:00

30 lines
370 B
C++
Executable File

#ifndef QQTDIALOG_H
#define QQTDIALOG_H
#include <QDialog>
namespace Ui {
class QQTDialog;
}
/**
* @brief QSS
*/
class QQTDialog : public QDialog
{
Q_OBJECT
public:
explicit QQTDialog(QWidget *parent = 0);
~QQTDialog();
private:
Ui::QQTDialog *ui;
// QWidget interface
protected:
void paintEvent(QPaintEvent *);
};
#endif // QQTDIALOG_H