GH-1559 Export IIconList from logic API
This commit is contained in:
7
api/logic/icons/IIconList.cpp
Normal file
7
api/logic/icons/IIconList.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include "IIconList.h"
|
||||
|
||||
// blargh
|
||||
IIconList::~IIconList()
|
||||
{
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user