From 98dbdf72b3c35878494df4954a447cec250a835d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 2 Jan 2013 22:01:04 +0100 Subject: PlaylistVector: move struct playlist_metadata to PlaylistInfo.hxx --- src/PlaylistVector.hxx | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'src/PlaylistVector.hxx') diff --git a/src/PlaylistVector.hxx b/src/PlaylistVector.hxx index 00347ffd..30418131 100644 --- a/src/PlaylistVector.hxx +++ b/src/PlaylistVector.hxx @@ -20,9 +20,9 @@ #ifndef MPD_PLAYLIST_VECTOR_HXX #define MPD_PLAYLIST_VECTOR_HXX +#include "PlaylistInfo.hxx" #include "util/list.h" -#include #include #define playlist_vector_for_each(pos, head) \ @@ -31,20 +31,6 @@ #define playlist_vector_for_each_safe(pos, n, head) \ list_for_each_entry_safe(pos, n, head, siblings) -/** - * A directory entry pointing to a playlist file. - */ -struct playlist_metadata { - struct list_head siblings; - - /** - * The UTF-8 encoded name of the playlist file. - */ - char *name; - - time_t mtime; -}; - void playlist_vector_deinit(struct list_head *pv); -- cgit v1.2.3