Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
dissector_tables_view.h
1 /* dissector_tables_view.h
2  * Tree view of Dissector Table data.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef DISSECTOR_TABLES_VIEW_H
12 #define DISSECTOR_TABLES_VIEW_H
13 
14 #include <config.h>
15 #include <QTreeView>
16 
17 class DissectorTablesTreeView : public QTreeView
18 {
19  Q_OBJECT
20 public:
21  DissectorTablesTreeView(QWidget *parent = 0);
22 
23 protected slots:
24  void currentChanged(const QModelIndex &current, const QModelIndex &previous);
25 };
26 #endif // DISSECTOR_TABLES_VIEW_H
27 
28 /*
29  * Editor modelines
30  *
31  * Local Variables:
32  * c-basic-offset: 4
33  * tab-width: 8
34  * indent-tabs-mode: nil
35  * End:
36  *
37  * ex: set shiftwidth=4 tabstop=8 expandtab:
38  * :indentSize=4:tabSize=8:noTabs=true:
39  */
Definition: dissector_tables_view.h:17