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/QueueCommands.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 'src/command/QueueCommands.hxx')
-rw-r--r-- | src/command/QueueCommands.hxx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/command/QueueCommands.hxx b/src/command/QueueCommands.hxx index 48641d2d1..bccb9a370 100644 --- a/src/command/QueueCommands.hxx +++ b/src/command/QueueCommands.hxx @@ -23,66 +23,66 @@ #include "CommandResult.hxx" class Client; -template<typename T> struct ConstBuffer; +class Request; CommandResult -handle_add(Client &client, ConstBuffer<const char *> args); +handle_add(Client &client, Request args); CommandResult -handle_addid(Client &client, ConstBuffer<const char *> args); +handle_addid(Client &client, Request args); CommandResult -handle_rangeid(Client &client, ConstBuffer<const char *> args); +handle_rangeid(Client &client, Request args); CommandResult -handle_delete(Client &client, ConstBuffer<const char *> args); +handle_delete(Client &client, Request args); CommandResult -handle_deleteid(Client &client, ConstBuffer<const char *> args); +handle_deleteid(Client &client, Request args); CommandResult -handle_playlist(Client &client, ConstBuffer<const char *> args); +handle_playlist(Client &client, Request args); CommandResult -handle_shuffle(Client &client, ConstBuffer<const char *> args); +handle_shuffle(Client &client, Request args); CommandResult -handle_clear(Client &client, ConstBuffer<const char *> args); +handle_clear(Client &client, Request args); CommandResult -handle_plchanges(Client &client, ConstBuffer<const char *> args); +handle_plchanges(Client &client, Request args); CommandResult -handle_plchangesposid(Client &client, ConstBuffer<const char *> args); +handle_plchangesposid(Client &client, Request args); CommandResult -handle_playlistinfo(Client &client, ConstBuffer<const char *> args); +handle_playlistinfo(Client &client, Request args); CommandResult -handle_playlistid(Client &client, ConstBuffer<const char *> args); +handle_playlistid(Client &client, Request args); CommandResult -handle_playlistfind(Client &client, ConstBuffer<const char *> args); +handle_playlistfind(Client &client, Request args); CommandResult -handle_playlistsearch(Client &client, ConstBuffer<const char *> args); +handle_playlistsearch(Client &client, Request args); CommandResult -handle_prio(Client &client, ConstBuffer<const char *> args); +handle_prio(Client &client, Request args); CommandResult -handle_prioid(Client &client, ConstBuffer<const char *> args); +handle_prioid(Client &client, Request args); CommandResult -handle_move(Client &client, ConstBuffer<const char *> args); +handle_move(Client &client, Request args); CommandResult -handle_moveid(Client &client, ConstBuffer<const char *> args); +handle_moveid(Client &client, Request args); CommandResult -handle_swap(Client &client, ConstBuffer<const char *> args); +handle_swap(Client &client, Request args); CommandResult -handle_swapid(Client &client, ConstBuffer<const char *> args); +handle_swapid(Client &client, Request args); #endif |