aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/Count.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-04-26 23:15:31 +0200
committerMax Kellermann <max@duempel.org>2014-04-27 22:27:43 +0200
commitbc2a1160b824c3ccf98ed658ef0d60c0f3d5bf5c (patch)
tree6daa38432619e8e0713504de3972af73007164df /src/db/Count.hxx
parent75542e8f5d615c31282e6e8562bb1b71222af999 (diff)
downloadmpd-bc2a1160b824c3ccf98ed658ef0d60c0f3d5bf5c.tar.gz
mpd-bc2a1160b824c3ccf98ed658ef0d60c0f3d5bf5c.tar.xz
mpd-bc2a1160b824c3ccf98ed658ef0d60c0f3d5bf5c.zip
db/Count: implement grouping
Diffstat (limited to 'src/db/Count.hxx')
-rw-r--r--src/db/Count.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/db/Count.hxx b/src/db/Count.hxx
index 5c5fca1bd..d22a3210d 100644
--- a/src/db/Count.hxx
+++ b/src/db/Count.hxx
@@ -22,6 +22,9 @@
#include "Compiler.h"
+#include <stdint.h>
+
+enum TagType : uint8_t;
class Client;
class SongFilter;
class Error;
@@ -30,6 +33,7 @@ gcc_nonnull(2)
bool
PrintSongCount(Client &client, const char *name,
const SongFilter *filter,
+ TagType group,
Error &error);
#endif