Documentation fixes
[vlp.git] / src / kernel / ConnectDialog.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 /**
10  * @file
11  */
12
13 namespace loglan {
14 namespace vlp {
15 namespace dialog {
16
17 /**
18  * Kill Interpreter Dialog class
19  */
20 class ConnectDialog : public QDialog, private Ui::ConnectDialog {
21 public:
22         ConnectDialog(QWidget * parent = 0);
23         ~ConnectDialog();
24
25         QString getAddress();
26 };
27
28 }
29 }
30 }
31
32 #endif /* _VLP_KERNEL_CONNECTDIALOG_H */