Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
scsi_service_response_time_dialog.h
1 /* scsi_service_response_time_dialog.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
11 #define __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
12 
13 #include "service_response_time_dialog.h"
14 
15 class QComboBox;
16 
18 {
19  Q_OBJECT
20 
21 public:
22 
23  ScsiServiceResponseTimeDialog(QWidget &parent, CaptureFile &cf, struct register_srt *srt, const QString filter);
24  static TapParameterDialog *createScsiSrtDialog(QWidget &parent, const QString, const QString opt_arg, CaptureFile &cf);
25 
26  void setScsiCommand(int command);
27 
28 protected:
29  virtual void provideParameterData();
30 
31 private:
32  QComboBox *command_combo_;
33 };
34 
35 #endif // __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
36 
37 /*
38  * Editor modelines
39  *
40  * Local Variables:
41  * c-basic-offset: 4
42  * tab-width: 8
43  * indent-tabs-mode: nil
44  * End:
45  *
46  * ex: set shiftwidth=4 tabstop=8 expandtab:
47  * :indentSize=4:tabSize=8:noTabs=true:
48  */
Definition: srt_table.c:19
Definition: tap_parameter_dialog.h:44
Definition: scsi_service_response_time_dialog.h:17
Definition: capture_file.h:22
Definition: service_response_time_dialog.h:21