shift-shell/initialstart/plugin/initialstartutil.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
408 B
C
Raw Normal View History

2023-11-06 05:27:44 +00:00
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <KOSRelease>
#include <QObject>
class InitialStartUtil : public QObject
{
Q_OBJECT
Q_PROPERTY(QString distroName READ distroName CONSTANT);
public:
InitialStartUtil(QObject *parent = nullptr);
QString distroName() const;
private:
KOSRelease m_osrelease;
};