blob: 8aea112b5082c0bfdc6f4a4e7df60e292b204c03 (
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
28
29
30
31
32
33
|
/** @file
*
* Logray - Event log analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef LOGRAY_APPLICATION_H
#define LOGRAY_APPLICATION_H
#include <main_application.h>
// To do:
// - Remove SequenceDiagram dependency on RTPStreamDialog
// - Remove PacketListModel dependency on WirelessTimeline
class LograyApplication : public MainApplication
{
public:
explicit LograyApplication(int &argc, char **argv);
~LograyApplication();
void refreshLocalInterfaces() override;
private:
void initializeIcons() override;
};
extern LograyApplication *lwApp;
#endif // LOGRAY_APPLICATION_H
|