diff options
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index b409c5f5..c415ba4f 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -94,6 +94,11 @@ class CommandHandler void handleListUsers(); /** + * Handle a topic command. + */ + void handleTopic(const std::string &args); + + /** * Handle a quit command. */ void handleQuit(); @@ -102,6 +107,7 @@ class CommandHandler * Handle a clear command. */ void handleClear(); + }; extern CommandHandler *commandHandler; |