add the configuration to the plugin

This commit is contained in:
Sven Czarnian
2021-08-11 08:27:51 +02:00
parent 272fb3aab0
commit ac022f55fc
2 changed files with 7 additions and 1 deletions

View File

@@ -20,6 +20,8 @@ PlugIn::PlugIn() :
PLUGIN_NAME, PLUGIN_NAME,
PLUGIN_VERSION, PLUGIN_VERSION,
PLUGIN_DEVELOPER, PLUGIN_DEVELOPER,
PLUGIN_COPYRIGHT) { } PLUGIN_COPYRIGHT),
m_configuration() {
}
PlugIn::~PlugIn() noexcept { } PlugIn::~PlugIn() noexcept { }

View File

@@ -14,6 +14,8 @@
#include <EuroScopePlugIn.h> #include <EuroScopePlugIn.h>
#pragma warning(pop) #pragma warning(pop)
#include <aman/types/Communication.h>
namespace aman { namespace aman {
/** /**
* @brief Defines the EuroScope plug-in * @brief Defines the EuroScope plug-in
@@ -31,6 +33,8 @@ namespace aman {
enum class TagItemElement { enum class TagItemElement {
}; };
Communication m_configuration;
public: public:
/** /**
* @brief Creates a new plug-in * @brief Creates a new plug-in