4219d33a791ecf4656fcad9ec770da40cbfe6ba3
[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/connect_dialog.h"
8
9 namespace loglan {
10 namespace vlp {
11
12 /**
13  * Kill Interpreter Dialog class
14  */
15 class ConnectDialog : public QDialog, private Ui::ConnectDialog {
16 public:
17         ConnectDialog(QWidget * parent = 0);
18         ~ConnectDialog();
19
20         QString getAddress();
21 };
22
23 }
24 }
25
26 #endif /* _VLP_KERNEL_CONNECTDIALOG_H */