From 86e036c3933def22b6ff0eae5bcf9cd7103240e7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 13 Aug 2015 12:48:31 +0200 Subject: command: pass Response object to command callbacks --- src/command/OutputCommands.hxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/command/OutputCommands.hxx') diff --git a/src/command/OutputCommands.hxx b/src/command/OutputCommands.hxx index f985032a5..3dd81bc23 100644 --- a/src/command/OutputCommands.hxx +++ b/src/command/OutputCommands.hxx @@ -24,17 +24,18 @@ class Client; class Request; +class Response; CommandResult -handle_enableoutput(Client &client, Request args); +handle_enableoutput(Client &client, Request request, Response &response); CommandResult -handle_disableoutput(Client &client, Request args); +handle_disableoutput(Client &client, Request request, Response &response); CommandResult -handle_toggleoutput(Client &client, Request args); +handle_toggleoutput(Client &client, Request request, Response &response); CommandResult -handle_devices(Client &client, Request args); +handle_devices(Client &client, Request request, Response &response); #endif -- cgit v1.2.3