Move HookManager::Hook definition in the cpp

This avoids including regex.hh in the header.
This commit is contained in:
Maxime Coste 2017-10-02 14:20:36 +08:00
parent 18705a0097
commit a5ae21d70d
2 changed files with 16 additions and 10 deletions

View File

@ -13,6 +13,17 @@
namespace Kakoune
{
struct HookManager::Hook
{
String group;
Regex filter;
String commands;
};
HookManager::HookManager() : m_parent(nullptr) {}
HookManager::HookManager(HookManager& parent) : SafeCountable{}, m_parent(&parent) {}
HookManager::~HookManager() = default;
void HookManager::add_hook(StringView hook_name, String group, Regex filter, String commands)
{
auto& hooks = m_hooks[hook_name];

View File

@ -4,17 +4,18 @@
#include "hash_map.hh"
#include "completion.hh"
#include "safe_ptr.hh"
#include "regex.hh"
namespace Kakoune
{
class Context;
class Regex;
class HookManager : public SafeCountable
{
public:
HookManager(HookManager& parent) : SafeCountable{}, m_parent(&parent) {}
HookManager(HookManager& parent);
~HookManager();
void add_hook(StringView hook_name, String group, Regex filter, String commands);
void remove_hooks(StringView group);
@ -23,17 +24,11 @@ public:
Context& context) const;
private:
HookManager()
: m_parent(nullptr) {}
HookManager();
// the only one allowed to construct a root hook manager
friend class Scope;
struct Hook
{
String group;
Regex filter;
String commands;
};
struct Hook;
SafePtr<HookManager> m_parent;
HashMap<String, Vector<std::unique_ptr<Hook>, MemoryDomain::Hooks>, MemoryDomain::Hooks> m_hooks;