CQtDeployer/Deploy/targetinfo.h

31 lines
651 B
C
Raw Normal View History

2019-12-08 13:57:20 +03:00
//#
//# Copyright (C) 2018-2021 QuasarApp.
2019-12-08 13:57:20 +03:00
//# 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.
//#
#ifndef TARGETINFO_H
#define TARGETINFO_H
2019-12-09 17:28:56 +03:00
#include "distrostruct.h"
2019-12-08 13:57:20 +03:00
#include "libinfo.h"
class DEPLOYSHARED_EXPORT TargetInfo: public LibInfo
{
public:
TargetInfo();
2020-02-26 16:51:28 +03:00
QString getPackage() const;
void setPackage(const QString &value);
2019-12-08 13:57:20 +03:00
2021-02-26 20:24:06 +03:00
QString getIcon() const;
void setIcon(const QString &value);
2019-12-08 13:57:20 +03:00
private:
2020-02-26 16:51:28 +03:00
QString package = "";
2021-02-26 20:24:06 +03:00
QString icon = "";
2019-12-08 13:57:20 +03:00
};
#endif // TARGETINFO_H