Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
pluginifdemo_about.h
1/* pluginifdemo_about.h
2 *
3 * Author: Roland Knall <[email protected]>
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
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
21namespace Ui {
23}
24
25class PluginIFDemo_About : public QDialog
26{
27 Q_OBJECT
28
29public:
30 explicit PluginIFDemo_About(QWidget *parent = 0);
32
33private slots:
34 void on_buttonBox_clicked(QAbstractButton *button);
35
36private:
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