diff options
author | Roderic Morris <roderic@ccs.neu.edu> | 2008-06-25 21:12:44 +0000 |
---|---|---|
committer | Roderic Morris <roderic@ccs.neu.edu> | 2008-06-25 21:12:44 +0000 |
commit | a34a4692200eaf5b3ec8a7de75699a46aefd8b98 (patch) | |
tree | d73f15d55e7f784e99d92672f9ccbe69d64d7e69 /src/commandhandler.h | |
parent | a0b6e09737b7b416a38c08d8e1d6744a4cc12f7d (diff) | |
download | mana-a34a4692200eaf5b3ec8a7de75699a46aefd8b98.tar.gz mana-a34a4692200eaf5b3ec8a7de75699a46aefd8b98.tar.bz2 mana-a34a4692200eaf5b3ec8a7de75699a46aefd8b98.tar.xz mana-a34a4692200eaf5b3ec8a7de75699a46aefd8b98.zip |
handle topic changes and guild events
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; |