aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/Count.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-08-06 22:10:25 +0200
committerMax Kellermann <max@duempel.org>2015-08-12 08:41:05 +0200
commit7652a2986b0d0ad55b2776685130f1c68d7108c7 (patch)
treeb4d45e60e97757454f1ff8e4dc793a1e7d852c36 /src/db/Count.hxx
parentb1480167be487d09ff46bb86ad02041fb28acff1 (diff)
downloadmpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.tar.gz
mpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.tar.xz
mpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.zip
client/Response: new Client wrapper class for writing responses
Diffstat (limited to 'src/db/Count.hxx')
-rw-r--r--src/db/Count.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/db/Count.hxx b/src/db/Count.hxx
index d9f28cb03..4fc26aa7a 100644
--- a/src/db/Count.hxx
+++ b/src/db/Count.hxx
@@ -25,13 +25,14 @@
#include <stdint.h>
enum TagType : uint8_t;
-class Client;
+struct Partition;
+class Response;
class SongFilter;
class Error;
-gcc_nonnull(2)
+gcc_nonnull(3)
bool
-PrintSongCount(Client &client, const char *name,
+PrintSongCount(Response &r, const Partition &partition, const char *name,
const SongFilter *filter,
TagType group,
Error &error);