2020-04-29 18:02:36 +02:00
|
|
|
/****************************************************************************
|
2022-05-14 14:00:20 +02:00
|
|
|
* Copyright (C) 2020 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
2020-04-29 18:02:36 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PluginData.h"
|
|
|
|
#include "PluginInformation.h"
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "PluginMetaInformation.h"
|
|
|
|
#include <memory>
|
2022-05-14 14:00:20 +02:00
|
|
|
#include <utility>
|
2020-04-29 18:02:36 +02:00
|
|
|
|
|
|
|
class PluginContainer {
|
|
|
|
public:
|
2022-05-14 14:00:20 +02:00
|
|
|
PluginContainer(std::unique_ptr<PluginMetaInformation> metaInformation, std::unique_ptr<PluginInformation> pluginInformation, std::shared_ptr<PluginData> pluginData)
|
|
|
|
: metaInformation(std::move(metaInformation)),
|
|
|
|
pluginInformation(std::move(pluginInformation)),
|
|
|
|
pluginData(std::move(pluginData)) {
|
2020-05-17 20:43:04 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::unique_ptr<PluginMetaInformation> &getMetaInformation() const {
|
2020-04-29 18:02:36 +02:00
|
|
|
return this->metaInformation;
|
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::unique_ptr<PluginInformation> &getPluginInformation() const {
|
2020-04-29 18:02:36 +02:00
|
|
|
return pluginInformation;
|
|
|
|
}
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
[[nodiscard]] const std::shared_ptr<PluginData> &getPluginData() const {
|
2020-04-29 18:02:36 +02:00
|
|
|
return pluginData;
|
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
uint32_t getHandle() {
|
|
|
|
return (uint32_t) this;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
const std::unique_ptr<PluginMetaInformation> metaInformation;
|
|
|
|
const std::unique_ptr<PluginInformation> pluginInformation;
|
|
|
|
const std::shared_ptr<PluginData> pluginData;
|
2020-04-29 18:02:36 +02:00
|
|
|
};
|