Restructure code
[vlp.git] / src / kernel / connect_dialog.cpp
1 #include <QtGui/QDialog>
2
3 #include "connect_dialog.h"
4
5 namespace loglan {
6 namespace vlp {
7 namespace dialog {
8
9 ConnectDialog::ConnectDialog(QWidget * parent)
10         : QDialog(parent, Qt::Dialog)
11 {
12         setupUi(this);
13 }
14
15 ConnectDialog::~ConnectDialog()
16 {
17 }
18
19 QString ConnectDialog::getAddress()
20 {
21         return address->text();
22 }
23
24 }
25 }
26 }