GH-1559 Export IIconList from logic API

This commit is contained in:
Mrazek, Petr
2016-05-03 17:49:56 +02:00
parent e1a530f84d
commit 898e3cd4e7
3 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,7 @@
#include "IIconList.h"
// blargh
IIconList::~IIconList()
{
}

View File

@ -1,6 +1,7 @@
#pragma once
#include <QString>
#include "multimc_logic_export.h"
enum IconType : unsigned
{
@ -11,10 +12,10 @@ enum IconType : unsigned
ToBeDeleted
};
class IIconList
class MULTIMC_LOGIC_EXPORT IIconList
{
public:
virtual ~IIconList(){}
virtual ~IIconList();
virtual bool addIcon(QString key, QString name, QString path, IconType type) = 0;
};