diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-11-18 22:24:31 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-11-18 22:24:31 +0000 |
| commit | 9a6712e56b95a9acbae40a6d3e9e1f1e2f3e6f19 (patch) | |
| tree | 62f42179470892514cdee47ba2d36c4169a0d1dd /src/hook_manager.hh | |
| parent | d27548dd154631ce627dfeb8abbf0a8540e73366 (diff) | |
rename idvaluemap to id_map, remove Id template param, use String
Diffstat (limited to 'src/hook_manager.hh')
| -rw-r--r-- | src/hook_manager.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hook_manager.hh b/src/hook_manager.hh index ac2ce8f5..8b0d7e2d 100644 --- a/src/hook_manager.hh +++ b/src/hook_manager.hh @@ -1,7 +1,7 @@ #ifndef hook_manager_hh_INCLUDED #define hook_manager_hh_INCLUDED -#include "idvaluemap.hh" +#include "id_map.hh" #include "utils.hh" #include <unordered_map> @@ -29,7 +29,7 @@ private: friend class GlobalHooks; HookManager* m_parent; - std::unordered_map<String, idvaluemap<String, HookFunc>> m_hook; + std::unordered_map<String, id_map<HookFunc>> m_hook; }; class GlobalHooks : public HookManager, |
