diff options
Diffstat (limited to 'src/command/OutputCommands.hxx')
-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 |