diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-11-23 12:51:00 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-11-23 12:51:00 +0100 |
commit | 6fc00fa62905e5990fa9667f540e10a775832540 (patch) | |
tree | fa037bc3e25569d720d596139f120529e7642109 /include | |
parent | 42de16029da37f08ce1827352aa78b4b29d888cb (diff) |
Implement ModeHandler::RegisterService()
Diffstat (limited to 'include')
-rw-r--r-- | include/mode.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mode.h b/include/mode.h index eebfbedd6..d8884bf9f 100644 --- a/include/mode.h +++ b/include/mode.h @@ -168,6 +168,11 @@ class CoreExport ModeHandler : public ServiceProvider ModeHandler(Module* me, const std::string& name, char modeletter, ParamSpec params, ModeType type, Class mclass = MC_OTHER); virtual CullResult cull(); virtual ~ModeHandler(); + + /** Register this object in the ModeParser + */ + void RegisterService() CXX11_OVERRIDE; + /** * Returns true if the mode is a list mode */ |