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.
24 lines
393 B
24 lines
393 B
#ifndef DIALOGSTARTCAPTUR_H
|
|
#define DIALOGSTARTCAPTUR_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DialogStartCaptur;
|
|
}
|
|
|
|
class DialogStartCaptur : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogStartCaptur(QWidget* parent = nullptr);
|
|
quint16 getPort();
|
|
QString getAddress();
|
|
~DialogStartCaptur();
|
|
|
|
private:
|
|
Ui::DialogStartCaptur* ui;
|
|
};
|
|
|
|
#endif //DIALOGSTARTCAPTUR_H
|
|
|