mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-14 06:15:54 -05:00
Clean up and formatting
This commit is contained in:
@@ -29,11 +29,9 @@ public:
|
||||
this->metaInformation = other.metaInformation;
|
||||
}
|
||||
|
||||
PluginContainer() {
|
||||
PluginContainer() = default;
|
||||
|
||||
}
|
||||
|
||||
const PluginMetaInformation &getMetaInformation() const {
|
||||
[[nodiscard]] const PluginMetaInformation &getMetaInformation() const {
|
||||
return this->metaInformation;
|
||||
}
|
||||
|
||||
@@ -41,20 +39,20 @@ public:
|
||||
this->metaInformation = metaInfo;
|
||||
}
|
||||
|
||||
const PluginInformation &getPluginInformation() const {
|
||||
[[nodiscard]] const PluginInformation &getPluginInformation() const {
|
||||
return pluginInformation;
|
||||
}
|
||||
|
||||
void setPluginInformation(const PluginInformation &pluginInformation) {
|
||||
this->pluginInformation = pluginInformation;
|
||||
void setPluginInformation(const PluginInformation &_pluginInformation) {
|
||||
this->pluginInformation = _pluginInformation;
|
||||
}
|
||||
|
||||
const PluginData &getPluginData() const {
|
||||
[[nodiscard]] const PluginData &getPluginData() const {
|
||||
return pluginData;
|
||||
}
|
||||
|
||||
void setPluginData(const PluginData &pluginData) {
|
||||
this->pluginData = pluginData;
|
||||
void setPluginData(const PluginData &_pluginData) {
|
||||
this->pluginData = _pluginData;
|
||||
}
|
||||
|
||||
PluginData pluginData;
|
||||
|
||||
Reference in New Issue
Block a user