23 lines
299 B
C
23 lines
299 B
C
|
#ifndef CABOUTDIALOG_H
|
||
|
#define CABOUTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class CAboutDialog;
|
||
|
}
|
||
|
|
||
|
class CAboutDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit CAboutDialog(QWidget *parent = 0);
|
||
|
~CAboutDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::CAboutDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // CABOUTDIALOG_H
|