dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
vlp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Clean all doc files on make clean
[vlp.git]
/
src
/
kernel
/
ConnectDialog.cpp
1
#include <QtGui/QDialog>
2
3
#include "ConnectDialog.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
}