Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
export_pdu_dialog.h
1 /* export_pdu_dialog.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef EXPORT_PDU_DIALOG_H
11 #define EXPORT_PDU_DIALOG_H
12 
13 #include <QDialog>
14 #include <QDebug>
15 
16 namespace Ui {
17 class ExportPDUDialog;
18 }
19 
20 class ExportPDUDialog : public QDialog
21 {
22  Q_OBJECT
23 
24 public:
25  explicit ExportPDUDialog(QWidget *parent = 0);
26  ~ExportPDUDialog();
27 
28 private:
30 
31 private slots:
32  void on_buttonBox_accepted();
33 };
34 
35 #endif // EXPORT_PDU_DIALOG_H
36 
37 /*
38  * Editor modelines
39  *
40  * Local Variables:
41  * c-basic-offset: 4
42  * tab-width: 8
43  * indent-tabs-mode: nil
44  * End:
45  *
46  * ex: set shiftwidth=4 tabstop=8 expandtab:
47  * :indentSize=4:tabSize=8:noTabs=true:
48  */
Definition: ui_about_dialog.h:291
Definition: export_pdu_dialog.h:20
Definition: ui_export_pdu_dialog.h:83