diff options
Diffstat (limited to 'include/cru/ui/ThemeManager.hpp')
-rw-r--r-- | include/cru/ui/ThemeManager.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/ThemeManager.hpp b/include/cru/ui/ThemeManager.hpp index 45cd810c..07b5f57b 100644 --- a/include/cru/ui/ThemeManager.hpp +++ b/include/cru/ui/ThemeManager.hpp @@ -8,17 +8,17 @@ #include <unordered_map> namespace cru::ui { -class ThemeResourceKeyNotExistException : public Exception { +class CRU_UI_API ThemeResourceKeyNotExistException : public Exception { public: using Exception::Exception; }; -class BadThemeResourceException : public Exception { +class CRU_UI_API BadThemeResourceException : public Exception { public: using Exception::Exception; }; -class ThemeManager : public Object { +class CRU_UI_API ThemeManager : public Object { public: static ThemeManager* GetInstance(); |