mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-28 14:34:35 +00:00
23 lines
243 B
C++
23 lines
243 B
C++
#ifndef ABOUT_H
|
|
#define ABOUT_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class About;
|
|
}
|
|
|
|
class About : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit About(QWidget *parent = 0);
|
|
~About();
|
|
|
|
private:
|
|
Ui::About *ui;
|
|
};
|
|
|
|
#endif // ABOUT_H
|