summaryrefslogtreecommitdiffstats
path: root/ui/qt/scsi_service_response_time_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/scsi_service_response_time_dialog.h')
-rw-r--r--ui/qt/scsi_service_response_time_dialog.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/ui/qt/scsi_service_response_time_dialog.h b/ui/qt/scsi_service_response_time_dialog.h
new file mode 100644
index 00000000..a9fd564e
--- /dev/null
+++ b/ui/qt/scsi_service_response_time_dialog.h
@@ -0,0 +1,34 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
+#define __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
+
+#include "service_response_time_dialog.h"
+
+class QComboBox;
+
+class ScsiServiceResponseTimeDialog : public ServiceResponseTimeDialog
+{
+ Q_OBJECT
+
+public:
+ ScsiServiceResponseTimeDialog(QWidget &parent, CaptureFile &cf, struct register_srt *srt, const QString filter);
+ static TapParameterDialog *createScsiSrtDialog(QWidget &parent, const QString, const QString opt_arg, CaptureFile &cf);
+
+ void setScsiCommand(int command);
+
+protected:
+ virtual void provideParameterData();
+
+private:
+ QComboBox *command_combo_;
+};
+
+#endif // __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__