1 Star 0 Fork 0

KylinOS.Dev/Kylin Desktop Integrity Checker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sourcesdata.h 733 Bytes
一键复制 编辑 原始数据 按行查看 历史
王泓 提交于 2023-11-06 17:28 . add base logic
#ifndef SOURCESDATA_H
#define SOURCESDATA_H
#include <QObject>
#include <QMetaType>
#include <QMetaObject>
#include <QMetaEnum>
class SourcesData : public QObject
{
Q_OBJECT
public:
QString type;
QStringList archs;
QString sign;
QString url;
QString codename;
QStringList repos;
public:
SourcesData(QObject *parent = nullptr);
SourcesData(const SourcesData &src, QObject *parent = nullptr);
~SourcesData();
SourcesData &operator=(const SourcesData &src);
bool operator==(const SourcesData &dst) const;
QString toSourcesList() const;
private:
void Initialization();
SourcesData &Copy(const SourcesData &src);
};
Q_DECLARE_METATYPE(SourcesData)
#endif // SOURCESDATA_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/kylinos-dev/kylin-desktop-integrity-checker.git
git@gitee.com:kylinos-dev/kylin-desktop-integrity-checker.git
kylinos-dev
kylin-desktop-integrity-checker
Kylin Desktop Integrity Checker
master

搜索帮助