diff options
author | Max Kellermann <max@duempel.org> | 2015-08-11 22:11:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-11 22:43:10 +0200 |
commit | 0f92d021a1dc2992352b635846428229d2c9ffbb (patch) | |
tree | 428bb5673728c67cf1fd29672609c9e367ad9da0 /src/command/OutputCommands.hxx | |
parent | cbdc3194cc20aa5abcce8b53c44d46a96002ad3a (diff) | |
download | mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.tar.gz mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.tar.xz mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.zip |
command/Request: new struct wrapping ConstBuffer<const char *>
Diffstat (limited to '')
-rw-r--r-- | src/command/OutputCommands.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/command/OutputCommands.hxx b/src/command/OutputCommands.hxx index 985f27416..f985032a5 100644 --- a/src/command/OutputCommands.hxx +++ b/src/command/OutputCommands.hxx @@ -23,18 +23,18 @@ #include "CommandResult.hxx" class Client; -template<typename T> struct ConstBuffer; +class Request; CommandResult -handle_enableoutput(Client &client, ConstBuffer<const char *> args); +handle_enableoutput(Client &client, Request args); CommandResult -handle_disableoutput(Client &client, ConstBuffer<const char *> args); +handle_disableoutput(Client &client, Request args); CommandResult -handle_toggleoutput(Client &client, ConstBuffer<const char *> args); +handle_toggleoutput(Client &client, Request args); CommandResult -handle_devices(Client &client, ConstBuffer<const char *> args); +handle_devices(Client &client, Request args); #endif |