aboutsummaryrefslogtreecommitdiff
path: root/src/application.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.hpp')
-rw-r--r--src/application.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/application.hpp b/src/application.hpp
index 7357bbaf..c286cc08 100644
--- a/src/application.hpp
+++ b/src/application.hpp
@@ -8,6 +8,7 @@
#include <type_traits>
#include "base.hpp"
+#include "any_map.h"
namespace cru
{
@@ -121,6 +122,11 @@ namespace cru
return caret_info_;
}
+ AnyMap* GetThemeMap()
+ {
+ return &theme_map_;
+ }
+
#ifdef CRU_DEBUG_LAYOUT
const DebugLayoutResource* GetDebugLayoutResource() const
{
@@ -141,6 +147,8 @@ namespace cru
#endif
CaretInfo caret_info_;
+
+ AnyMap theme_map_{};
};