aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/wireshark_application.h
blob: 7685d2d22ae85616edcda581efc76b13e39e6e39 (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
/** @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();
};

extern WiresharkApplication *wsApp;

#endif // WIRESHARK_APPLICATION_H