CQtDeployer/Deploy/targetinfo.cpp

29 lines
615 B
C++
Raw Normal View History

2019-12-08 13:57:20 +03:00
//#
//# Copyright (C) 2018-2020 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#include "targetinfo.h"
TargetInfo::TargetInfo() {
}
2019-12-09 17:28:56 +03:00
QString TargetInfo::getSufix() const {
2019-12-08 13:57:20 +03:00
return sufix;
}
2019-12-09 17:28:56 +03:00
void TargetInfo::setSufix(const QString &value) {
2019-12-08 13:57:20 +03:00
sufix = value;
}
2019-12-09 17:28:56 +03:00
DistroStruct& TargetInfo::getCustomStruct() {
return _customStruct;
}
void TargetInfo::setCustomStruct(const DistroStruct &customStruct) {
_customStruct = customStruct;
}