-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathESTimerPlugin.h
More file actions
30 lines (20 loc) · 767 Bytes
/
ESTimerPlugin.h
File metadata and controls
30 lines (20 loc) · 767 Bytes
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
#pragma once
#include "EuroScopePlugIn.h"
#include "ESTimerRadar.h"
#define MY_PLUGIN_NAME "Timer Plugin"
#define MY_PLUGIN_VERSION "1.0"
#define MY_PLUGIN_DEVELOPER "Hendrik Peter"
#define MY_PLUGIN_COPYRIGHT "GPL v3"
#define MY_PLUGIN_VIEW_AVISO "SMR radar display"
using namespace std;
using namespace EuroScopePlugIn;
class CESTimerPlugin : public EuroScopePlugIn::CPlugIn
{
public:
CESTimerPlugin();
virtual ~CESTimerPlugin();
//---OnTimer------------------------------------------
virtual void OnTimer(int Counter);
//---OnRadarScreenCreated------------------------------------------
virtual CRadarScreen* OnRadarScreenCreated(const char* sDisplayName, bool NeedRadarContent, bool GeoReferenced, bool CanBeSaved, bool CanBeCreated);
};