Add missing copy constructors

This commit is contained in:
Maschell
2020-05-17 20:43:04 +02:00
parent 7247ad3093
commit 3b9f4a9a51
7 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "PluginMetaInformation.h"
PluginMetaInformation::PluginMetaInformation(const PluginMetaInformation& other) {
this->name = other.name;
this->author = other.author;
this->version = other.version;
this->license = other.license;
this->buildtimestamp = other.buildtimestamp;
this->description = other.description;
this->size = other.size;
}