Restructure code
[vlp.git] / src / kernel / connect_dialog.h
1 #ifndef _VLP_KERNEL_CONNECTDIALOG_H
2 #define _VLP_KERNEL_CONNECTDIALOG_H
3
4 #include <QtGui/QDialog>
5 #include <QtCore/QString>
6
7 #include "ui/dialogs/ConnectDialog.h"
8
9 namespace loglan {
10 namespace vlp {
11 namespace dialog {
12
13 /**
14  * Kill Interpreter Dialog class
15  */
16 class ConnectDialog : public QDialog, private Ui::ConnectDialog {
17 public:
18         ConnectDialog(QWidget * parent = 0);
19         ~ConnectDialog();
20
21         QString getAddress();
22 };
23
24 }
25 }
26 }
27
28 #endif /* _VLP_KERNEL_CONNECTDIALOG_H */