| 276 | |
| 277 | template <typename T> |
| 278 | void add_func(const std::string &name, const std::string &shortcut, T &&func) |
| 279 | { |
| 280 | m_map.emplace(name, std::forward<T>(func)); |
| 281 | m_map.emplace(shortcut, std::forward<T>(func)); |
| 282 | } |
| 283 | |
| 284 | bool exist(const std::string &name) |
| 285 | { |