Kerberos: add kerberos_inject_longterm_key() helper function
[wireshark-sm.git] / ui / qt / scsi_service_response_time_dialog.h
bloba9fd564e3a7d2995965e1fd7f1ab8b76cbb0fb77
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 __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
11 #define __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
13 #include "service_response_time_dialog.h"
15 class QComboBox;
17 class ScsiServiceResponseTimeDialog : public ServiceResponseTimeDialog
19 Q_OBJECT
21 public:
22 ScsiServiceResponseTimeDialog(QWidget &parent, CaptureFile &cf, struct register_srt *srt, const QString filter);
23 static TapParameterDialog *createScsiSrtDialog(QWidget &parent, const QString, const QString opt_arg, CaptureFile &cf);
25 void setScsiCommand(int command);
27 protected:
28 virtual void provideParameterData();
30 private:
31 QComboBox *command_combo_;
34 #endif // __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__