PrismLauncher/launcher/ui/themes/IconTheme.h

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

18 lines
267 B
C
Raw Normal View History

#pragma once
#include <QString>
class IconTheme {
public:
IconTheme(const QString& id, const QString& path);
bool load();
QString id();
QString path();
QString name();
private:
QString m_id;
QString m_path;
QString m_name;
};