diff options
Diffstat (limited to 'launcher/ui/themes/IconTheme.h')
-rw-r--r-- | launcher/ui/themes/IconTheme.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/launcher/ui/themes/IconTheme.h b/launcher/ui/themes/IconTheme.h new file mode 100644 index 00000000..cb05d8c7 --- /dev/null +++ b/launcher/ui/themes/IconTheme.h @@ -0,0 +1,18 @@ +#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; +};
\ No newline at end of file |