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