tychoGUI  1.0
 All Data Structures Namespaces Files Functions Variables
dialog.h
Go to the documentation of this file.
1 #ifndef DIALOG_H
2 #define DIALOG_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7 class Dialog;
8 }
9 
10 class Dialog : public QDialog
11 {
12  Q_OBJECT
13 
14 public:
15  explicit Dialog(QWidget *parent = 0);
16  ~Dialog();
17 
18 private slots:
19  void quit();
20 
21 private:
22  Ui::Dialog *ui;
23 };
24 
25 #endif // DIALOG_H