You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
639 B
27 lines
639 B
5 months ago
|
#include "DialogStartCaptur.h"
|
||
|
#include "ui_DialogStartCaptur.h"
|
||
|
|
||
|
DialogStartCaptur::DialogStartCaptur(QWidget* parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::DialogStartCaptur)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
/*************************************************************************************************/
|
||
|
quint16 DialogStartCaptur::getPort()
|
||
|
{
|
||
|
return static_cast<quint16>(ui->spinBox->value());
|
||
|
}
|
||
|
|
||
|
/*************************************************************************************************/
|
||
|
QString DialogStartCaptur::getAddress()
|
||
|
{
|
||
|
return ui->lineEdit->text();
|
||
|
}
|
||
|
|
||
|
DialogStartCaptur::~DialogStartCaptur()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|