2020-05-17 20:26:31 +02:00
|
|
|
/****************************************************************************
|
2022-05-14 12:06:16 +02:00
|
|
|
* Copyright (C) 2019-2022 Maschell
|
2020-05-17 20:26:31 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "wups_backend/PluginMetaInformation.h"
|
|
|
|
|
|
|
|
#include <cstring>
|
2021-04-07 23:36:30 +02:00
|
|
|
#include <utility>
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2023-02-17 12:03:27 +01:00
|
|
|
using namespace WUPSBackend;
|
|
|
|
|
2024-03-23 19:15:29 +01:00
|
|
|
PluginMetaInformation::PluginMetaInformation(std::string_view name,
|
|
|
|
std::string_view author,
|
|
|
|
std::string_view version,
|
|
|
|
std::string_view license,
|
|
|
|
std::string_view buildtimestamp,
|
|
|
|
std::string_view description,
|
|
|
|
std::string_view storageId,
|
2022-05-14 12:06:16 +02:00
|
|
|
size_t size) {
|
2024-03-23 19:15:29 +01:00
|
|
|
this->name = name;
|
|
|
|
this->author = author;
|
2022-05-14 12:06:16 +02:00
|
|
|
this->size = size;
|
2024-03-23 19:15:29 +01:00
|
|
|
this->buildtimestamp = buildtimestamp;
|
|
|
|
this->description = description;
|
|
|
|
this->license = license;
|
|
|
|
this->version = version;
|
|
|
|
this->storageId = storageId;
|
2020-05-17 20:26:31 +02:00
|
|
|
}
|