Kerberos: add kerberos_inject_longterm_key() helper function
[wireshark-sm.git] / ui / qt / strip_headers_dialog.h
blobd048293b46bf4ac2eb5a7739e88c9cd1385d99b1
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 STRIP_HEADERS_DIALOG_H
11 #define STRIP_HEADERS_DIALOG_H
13 #include <QDialog>
14 #include <QDebug>
16 namespace Ui {
17 class StripHeadersDialog;
20 class StripHeadersDialog : public QDialog
22 Q_OBJECT
24 public:
25 explicit StripHeadersDialog(QWidget *parent = 0);
26 ~StripHeadersDialog();
28 private:
29 Ui::StripHeadersDialog *ui;
31 private slots:
32 void on_buttonBox_accepted();
33 void on_buttonBox_helpRequested();
36 #endif // STRIP_HEADERS_DIALOG_H