Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
capture_info_dialog.h
1 /* capture_info_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 CAPTURE_INFO_DIALOG_H
11 #define CAPTURE_INFO_DIALOG_H
12 
13 #include <QDialog>
14 
15 class CaptureInfoDialog : public QDialog
16 {
17  Q_OBJECT
18 public:
19  explicit CaptureInfoDialog(QWidget *parent = 0);
20 
21 signals:
22 
23 public slots:
24 
25 };
26 
27 #endif // CAPTURE_INFO_DIALOG_H
28 
29 /*
30  * Editor modelines
31  *
32  * Local Variables:
33  * c-basic-offset: 4
34  * tab-width: 8
35  * indent-tabs-mode: nil
36  * End:
37  *
38  * ex: set shiftwidth=4 tabstop=8 expandtab:
39  * :indentSize=4:tabSize=8:noTabs=true:
40  */
Definition: capture_info_dialog.h:15