blob: 5e8e15fd20b2bbf812e5b624f871335ff27b2a14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef WIRESHARK_APPLICATION_H
#define WIRESHARK_APPLICATION_H
#include <main_application.h>
class WiresharkApplication : public MainApplication
{
public:
explicit WiresharkApplication(int &argc, char **argv);
~WiresharkApplication();
private:
void initializeIcons() override;
};
extern WiresharkApplication *wsApp;
#endif // WIRESHARK_APPLICATION_H
|