Add missing copy constructors

This commit is contained in:
Maschell
2020-05-17 20:43:04 +02:00
parent 2c1c356450
commit 8350766c40
7 changed files with 49 additions and 0 deletions

View File

@@ -23,6 +23,12 @@
class PluginContainer {
public:
PluginContainer(const PluginContainer& other) {
this->pluginData = other.pluginData;
this->pluginInformation = other.pluginInformation;
this->metaInformation = other.metaInformation;
}
PluginContainer() {
}