introduce the plugin definition
This commit is contained in:
27
src/PlugIn.cpp
Normal file
27
src/PlugIn.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Author:
|
||||
* Sven Czarnian <devel@svcz.de>
|
||||
* Brief:
|
||||
* Implements the EuroScope plug-in definition
|
||||
* Copyright:
|
||||
* 2021 Sven Czarnian
|
||||
* License:
|
||||
* GNU General Public License v3 (GPLv3)
|
||||
*/
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "PlugIn.h"
|
||||
|
||||
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
|
||||
|
||||
using namespace arrivalmanager;
|
||||
|
||||
PlugIn::PlugIn() :
|
||||
EuroScopePlugIn::CPlugIn(EuroScopePlugIn::COMPATIBILITY_CODE,
|
||||
PLUGIN_NAME,
|
||||
PLUGIN_VERSION,
|
||||
PLUGIN_DEVELOPER,
|
||||
PLUGIN_COPYRIGHT) { }
|
||||
|
||||
PlugIn::~PlugIn() noexcept { }
|
||||
Reference in New Issue
Block a user