WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.h

109 lines
2.8 KiB
C
Raw Normal View History

/****************************************************************************
* Copyright (C) 2019,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/>.
****************************************************************************/
#pragma once
#include <string>
#include <vector>
class PluginMetaInformation {
public:
2020-05-28 20:51:31 +02:00
PluginMetaInformation(const PluginMetaInformation &other);
2020-05-17 20:43:04 +02:00
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getName() const {
return name;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getAuthor() const {
return this->author;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getVersion() const {
return this->version;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getLicense() const {
return this->license;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getBuildTimestamp() const {
return this->buildtimestamp;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] const std::string &getDescription() const {
return this->description;
}
2021-10-01 17:25:48 +02:00
[[nodiscard]] const std::string &getStorageId() const {
return this->storageId;
}
2021-09-25 14:26:18 +02:00
[[nodiscard]] size_t getSize() const {
return this->size;
}
private:
2020-12-26 14:17:50 +01:00
PluginMetaInformation() = default;
2020-12-26 14:17:50 +01:00
void setName(const std::string &_name) {
this->name = _name;
}
2020-12-26 14:17:50 +01:00
void setAuthor(const std::string &_author) {
this->author = _author;
}
2020-12-26 14:17:50 +01:00
void setVersion(const std::string &_version) {
this->version = _version;
}
2020-12-26 14:17:50 +01:00
void setLicense(const std::string &_license) {
this->license = _license;
}
2020-12-26 14:17:50 +01:00
void setBuildTimestamp(const std::string &_buildtimestamp) {
this->buildtimestamp = _buildtimestamp;
}
2020-12-26 14:17:50 +01:00
void setDescription(const std::string &_description) {
this->description = _description;
}
2020-12-26 14:17:50 +01:00
void setSize(size_t _size) {
this->size = _size;
}
2021-10-01 17:25:48 +02:00
void setStorageId(const std::string &_storageId) {
this->storageId = _storageId;
}
std::string name;
std::string author;
std::string version;
std::string license;
std::string buildtimestamp;
std::string description;
2021-10-01 17:25:48 +02:00
std::string storageId;
2020-12-26 14:17:50 +01:00
size_t size{};
friend class PluginMetaInformationFactory;
2020-05-03 12:30:15 +02:00
friend class PluginContainerPersistence;
2020-05-03 12:30:15 +02:00
friend class PluginContainer;
};