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/StickerCommands.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/StickerCommands.hxx')
-rw-r--r-- | src/command/StickerCommands.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/StickerCommands.hxx b/src/command/StickerCommands.hxx index 8b7a8f7bf..51682d29f 100644 --- a/src/command/StickerCommands.hxx +++ b/src/command/StickerCommands.hxx @@ -23,9 +23,9 @@ #include "CommandResult.hxx" class Client; -template<typename T> struct ConstBuffer; +class Request; CommandResult -handle_sticker(Client &client, ConstBuffer<const char *> args); +handle_sticker(Client &client, Request args); #endif |