Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
wireshark_application.h
Go to the documentation of this file.
1
9
10#ifndef WIRESHARK_APPLICATION_H
11#define WIRESHARK_APPLICATION_H
12
13#include <main_application.h>
14
19{
20public:
26 explicit WiresharkApplication(int &argc, char **argv);
27
32
33private:
37 void initializeIcons() override;
38};
39
41extern WiresharkApplication *wsApp;
42
43#endif // WIRESHARK_APPLICATION_H
virtual void initializeIcons()=0
Pure virtual method for initializing application icons.
MainApplication(int &argc, char **argv)
Constructs the MainApplication.
Definition main_application.cpp:416
Top-level Qt application object for the Wireshark GUI.
Definition wireshark_application.h:19
~WiresharkApplication()
Destroys the Wireshark application instance.
Definition wireshark_application.cpp:25
WiresharkApplication(int &argc, char **argv)
Constructs the Wireshark application instance.
Definition wireshark_application.cpp:14