diff options
author | Mrazek, Petr <petr.mrazek@acision.com> | 2016-05-03 17:49:56 +0200 |
---|---|---|
committer | Mrazek, Petr <petr.mrazek@acision.com> | 2016-05-03 17:49:56 +0200 |
commit | 898e3cd4e7b524e4c1d9492f046f0520d61d1621 (patch) | |
tree | 0652b14e63d597f909c4921907653710e81d9ece /api/logic/icons | |
parent | e1a530f84dce9b4c1b262669157359fbbd436428 (diff) | |
download | MultiMC-898e3cd4e7b524e4c1d9492f046f0520d61d1621.tar MultiMC-898e3cd4e7b524e4c1d9492f046f0520d61d1621.tar.gz MultiMC-898e3cd4e7b524e4c1d9492f046f0520d61d1621.tar.lz MultiMC-898e3cd4e7b524e4c1d9492f046f0520d61d1621.tar.xz MultiMC-898e3cd4e7b524e4c1d9492f046f0520d61d1621.zip |
GH-1559 Export IIconList from logic API
Diffstat (limited to 'api/logic/icons')
-rw-r--r-- | api/logic/icons/IIconList.cpp | 7 | ||||
-rw-r--r-- | api/logic/icons/IIconList.h | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/api/logic/icons/IIconList.cpp b/api/logic/icons/IIconList.cpp new file mode 100644 index 00000000..b3a8fb43 --- /dev/null +++ b/api/logic/icons/IIconList.cpp @@ -0,0 +1,7 @@ +#include "IIconList.h" + +// blargh +IIconList::~IIconList() +{ +} + diff --git a/api/logic/icons/IIconList.h b/api/logic/icons/IIconList.h index a7e0fa07..ec94cb35 100644 --- a/api/logic/icons/IIconList.h +++ b/api/logic/icons/IIconList.h @@ -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; }; |