summaryrefslogtreecommitdiff
path: root/commands.h
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2011-01-04 03:17:45 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2011-01-04 03:17:45 +0100
commitf0db6a4e4e6b3059c6553b819ac8788b62486103 (patch)
treec449ef54f745c4a4994d815579c69c0790bc26b1 /commands.h
parent2b03b8ef2b5002f00960d17c8f1f634eb3a3a70f (diff)
Added Doxyfile and documentation comments in various places.
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands.h b/commands.h
index 084dd02..78ecf48 100644
--- a/commands.h
+++ b/commands.h
@@ -25,9 +25,11 @@ class Commands {
std::map<std::string, Handler> handlers;
typedef boost::function<std::vector<MusicListing::p> (const std::string artist)> FindFunction;
+ //! Handlers for the find command.
std::map<std::string, FindFunction> find_handlers;
boost::asio::io_service& io_service;
+ //! Command arguments.
std::vector<std::string>& args;
std::vector<std::string> ls();