summaryrefslogtreecommitdiffstats
path: root/ui/qt/export_pdu_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/export_pdu_dialog.h')
-rw-r--r--ui/qt/export_pdu_dialog.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/ui/qt/export_pdu_dialog.h b/ui/qt/export_pdu_dialog.h
new file mode 100644
index 0000000..e76399a
--- /dev/null
+++ b/ui/qt/export_pdu_dialog.h
@@ -0,0 +1,35 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef EXPORT_PDU_DIALOG_H
+#define EXPORT_PDU_DIALOG_H
+
+#include <QDialog>
+#include <QDebug>
+
+namespace Ui {
+class ExportPDUDialog;
+}
+
+class ExportPDUDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ExportPDUDialog(QWidget *parent = 0);
+ ~ExportPDUDialog();
+
+private:
+ Ui::ExportPDUDialog *ui;
+
+private slots:
+ void on_buttonBox_accepted();
+};
+
+#endif // EXPORT_PDU_DIALOG_H