Wireshark  4.3.0
The Wireshark network protocol analyzer
pluginifdemo_about.h
1 /* pluginifdemo_about.h
2  *
3  * Author: Roland Knall <rknall@gmail.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef PLUGINIFDEMO_ABOUT_H_
13 #define PLUGINIFDEMO_ABOUT_H_
14 
15 #include <QWidget>
16 #include <QDialog>
17 #include <QAbstractButton>
18 #include <QPixmap>
19 #include <QGraphicsScene>
20 
21 namespace Ui {
22 class PluginIFDemo_About;
23 }
24 
25 class PluginIFDemo_About : public QDialog
26 {
27  Q_OBJECT
28 
29 public:
30  explicit PluginIFDemo_About(QWidget *parent = 0);
32 
33 private slots:
34  void on_buttonBox_clicked(QAbstractButton *button);
35 
36 private:
37  Ui::PluginIFDemo_About *ui;
38 };
39 
40 #endif /* PLUGINIFDEMO_ABOUT_H_ */
41 
42 /*
43  * Editor modelines
44  *
45  * Local Variables:
46  * c-basic-offset: 4
47  * tab-width: 8
48  * indent-tabs-mode: nil
49  * End:
50  *
51  * ex: set shiftwidth=4 tabstop=8 expandtab:
52  * :indentSize=4:tabSize=8:noTabs=true:
53  */
Definition: pluginifdemo_about.h:26