summaryrefslogtreecommitdiffstats
path: root/api/logic/icons/IIconList.h
blob: ec94cb35c137a4b47209dacda28ef7268242b5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <QString>
#include "multimc_logic_export.h"

enum IconType : unsigned
{
	Builtin,
	Transient,
	FileBased,
	ICONS_TOTAL,
	ToBeDeleted
};

class MULTIMC_LOGIC_EXPORT IIconList
{
public:
	virtual ~IIconList();
	virtual bool addIcon(QString key, QString name, QString path, IconType type) = 0;
};