LATER... ei_kerberos_kdc_session_key ...
[wireshark-sm.git] / ui / qt / export_pdu_dialog.h
blob48d76f719c61a627d6d2b7237ae2862c3d2778e4
1 /** @file
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef EXPORT_PDU_DIALOG_H
11 #define EXPORT_PDU_DIALOG_H
13 #include <QDialog>
14 #include <QDebug>
16 namespace Ui {
17 class ExportPDUDialog;
20 class ExportPDUDialog : public QDialog
22 Q_OBJECT
24 public:
25 explicit ExportPDUDialog(QWidget *parent = 0);
26 ~ExportPDUDialog();
28 private:
29 Ui::ExportPDUDialog *ui;
31 private slots:
32 void on_buttonBox_accepted();
33 void on_buttonBox_helpRequested();
36 #endif // EXPORT_PDU_DIALOG_H