mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-12 12:45:53 -05:00
Add missing copy constructors
This commit is contained in:
11
source/plugin/PluginMetaInformation.cpp
Normal file
11
source/plugin/PluginMetaInformation.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user