From ac022f55fc53e68303001eb3a539c994846996ef Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Wed, 11 Aug 2021 08:27:51 +0200 Subject: [PATCH] add the configuration to the plugin --- src/PlugIn.cpp | 4 +++- src/PlugIn.h | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/PlugIn.cpp b/src/PlugIn.cpp index 4c747a0..508fd60 100644 --- a/src/PlugIn.cpp +++ b/src/PlugIn.cpp @@ -20,6 +20,8 @@ PlugIn::PlugIn() : PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_DEVELOPER, - PLUGIN_COPYRIGHT) { } + PLUGIN_COPYRIGHT), + m_configuration() { +} PlugIn::~PlugIn() noexcept { } diff --git a/src/PlugIn.h b/src/PlugIn.h index 1fa7580..37b4ff7 100644 --- a/src/PlugIn.h +++ b/src/PlugIn.h @@ -14,6 +14,8 @@ #include #pragma warning(pop) +#include + namespace aman { /** * @brief Defines the EuroScope plug-in @@ -31,6 +33,8 @@ namespace aman { enum class TagItemElement { }; + Communication m_configuration; + public: /** * @brief Creates a new plug-in