diff options
Diffstat (limited to 'api/logic/Env.cpp')
-rw-r--r-- | api/logic/Env.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/api/logic/Env.cpp b/api/logic/Env.cpp index cc0c5981..b8e07343 100644 --- a/api/logic/Env.cpp +++ b/api/logic/Env.cpp @@ -43,6 +43,16 @@ std::shared_ptr< QNetworkAccessManager > Env::qnam() return m_qnam; } +std::shared_ptr<IIconList> Env::icons() +{ + return m_iconlist; +} + +void Env::registerIconList(std::shared_ptr<IIconList> iconlist) +{ + m_iconlist = iconlist; +} + /* class NullVersion : public BaseVersion { |