aboutsummaryrefslogtreecommitdiff
path: root/src/DatabaseVisitor.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 22:04:03 +0100
committerMax Kellermann <max@duempel.org>2013-01-02 22:16:05 +0100
commit8331de424a67b137cd83ce817da0fceec647dc2f (patch)
treeb5243fbff385d9732c683cb1efc64eec85f3189f /src/DatabaseVisitor.hxx
parent98dbdf72b3c35878494df4954a447cec250a835d (diff)
PlaylistInfo: rename class, use std::string
Diffstat (limited to 'src/DatabaseVisitor.hxx')
-rw-r--r--src/DatabaseVisitor.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DatabaseVisitor.hxx b/src/DatabaseVisitor.hxx
index 10f907ce..c10deae1 100644
--- a/src/DatabaseVisitor.hxx
+++ b/src/DatabaseVisitor.hxx
@@ -26,11 +26,11 @@
struct directory;
struct song;
-struct playlist_metadata;
+struct PlaylistInfo;
typedef std::function<bool(const directory &, GError **)> VisitDirectory;
typedef std::function<bool(struct song &, GError **)> VisitSong;
-typedef std::function<bool(const playlist_metadata &, const directory &,
+typedef std::function<bool(const PlaylistInfo &, const directory &,
GError **)> VisitPlaylist;
typedef std::function<bool(const char *, GError **)> VisitString;