diff options
author | Adam <Adam@anope.org> | 2016-07-28 21:29:35 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-07-28 21:29:35 -0400 |
commit | 0e758a2ac23dc4a001e8e126cec14588da9a9769 (patch) | |
tree | 45df813323e023c5c89db7279426c4ad0943b4a9 /include/modules/help.h | |
parent | a3c8afae00c54d5b95c620248b51f90679d7d53f (diff) |
Allow serializable fields to use storage in the respective objects.
Split service management code nito a proper servicemanager. Make service
references managed instead of lazy lookup. Also made events and
serializable use service manager instead of their respective systems for
management
Diffstat (limited to 'include/modules/help.h')
-rw-r--r-- | include/modules/help.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/modules/help.h b/include/modules/help.h index df81aecbf..2b9c84983 100644 --- a/include/modules/help.h +++ b/include/modules/help.h @@ -11,6 +11,10 @@ namespace Event { struct CoreExport Help : Events { + static constexpr const char *NAME = "help"; + + using Events::Events; + /** Called when someone uses the generic/help command * @param source Command source * @param params Params @@ -26,4 +30,3 @@ namespace Event }; } -template<> struct EventName<Event::Help> { static constexpr const char *const name = "Help"; }; |