You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
301 B
C
26 lines
301 B
C
9 years ago
|
#ifndef DIALOG_H
|
||
|
#define DIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class Dialog;
|
||
|
}
|
||
|
|
||
|
class Dialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Dialog(QWidget *parent = 0);
|
||
|
~Dialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_accepted();
|
||
|
|
||
|
private:
|
||
|
Ui::Dialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOG_H
|