Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
remote_settings_dialog.h
1 /* remote_settings_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 REMOTE_SETTINGS_DIALOG_H
11 #define REMOTE_SETTINGS_DIALOG_H
12 
13 #include <config.h>
14 
15 #ifdef HAVE_PCAP_REMOTE
16 #include <QDialog>
17 #include "capture_opts.h"
18 
19 namespace Ui {
20 class RemoteSettingsDialog;
21 }
22 
23 class RemoteSettingsDialog : public QDialog
24 {
25  Q_OBJECT
26 
27 public:
28  explicit RemoteSettingsDialog(QWidget *parent = 0, interface_t *iface = NULL);
29  ~RemoteSettingsDialog();
30 
31 signals:
32  void remoteSettingsChanged(interface_t *iface);
33 
34 private slots:
35  void on_buttonBox_accepted();
36 
37 private:
38  Ui::RemoteSettingsDialog *ui;
39  interface_t mydevice;
40 };
41 #endif
42 #endif // REMOTE_SETTINGS_DIALOG_H
43 
44 /*
45  * Editor modelines
46  *
47  * Local Variables:
48  * c-basic-offset: 4
49  * tab-width: 8
50  * indent-tabs-mode: nil
51  * End:
52  *
53  * ex: set shiftwidth=4 tabstop=8 expandtab:
54  * :indentSize=4:tabSize=8:noTabs=true:
55  */
Definition: ui_about_dialog.h:291
Definition: androiddump.c:211