Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
export_pdu_dialog.h
Go to the documentation of this file.
1
10#ifndef EXPORT_PDU_DIALOG_H
11#define EXPORT_PDU_DIALOG_H
12
13#include <QDialog>
14#include <QDebug>
15
16namespace Ui {
17class ExportPDUDialog;
18}
19
23class ExportPDUDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
32 explicit ExportPDUDialog(QWidget *parent = 0);
33
38
39private:
41 Ui::ExportPDUDialog *ui;
42
43private slots:
47 void on_buttonBox_accepted();
48
52 void on_buttonBox_helpRequested();
53};
54
55#endif // EXPORT_PDU_DIALOG_H
A dialog for exporting Protocol Data Units (PDUs) to a file.
Definition export_pdu_dialog.h:24
~ExportPDUDialog()
Destroys the ExportPDUDialog.
Definition export_pdu_dialog.cpp:56