diff options
author | Max Kellermann <max@duempel.org> | 2012-08-29 19:27:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-29 20:19:02 +0200 |
commit | 333d226ed0044cf6a6387e03805be2d7f6dac6f2 (patch) | |
tree | 7acb6fc795fcd2bb8aa75c16172de1ff7a761e8f /src/DatabasePrint.hxx | |
parent | 04a9dec9525a58d077da71a84655cb45b7838520 (diff) | |
download | mpd-333d226ed0044cf6a6387e03805be2d7f6dac6f2.tar.gz mpd-333d226ed0044cf6a6387e03805be2d7f6dac6f2.tar.xz mpd-333d226ed0044cf6a6387e03805be2d7f6dac6f2.zip |
SongFilter: convert to a C++ class
Diffstat (limited to '')
-rw-r--r-- | src/DatabasePrint.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DatabasePrint.hxx b/src/DatabasePrint.hxx index e9a19cd52..4aacd9363 100644 --- a/src/DatabasePrint.hxx +++ b/src/DatabasePrint.hxx @@ -26,7 +26,7 @@ #include <stdbool.h> struct client; -struct locate_item_list; +class SongFilter; struct DatabaseSelection; struct db_visitor; @@ -47,13 +47,13 @@ printInfoForAllIn(struct client *client, const char *uri_utf8, gcc_nonnull(1,2) bool searchStatsForSongsIn(struct client *client, const char *name, - const struct locate_item_list *criteria, + const SongFilter *filter, GError **error_r); gcc_nonnull(1) bool listAllUniqueTags(struct client *client, int type, - const struct locate_item_list *criteria, + const SongFilter *filter, GError **error_r); #endif |