diff options
Diffstat (limited to '')
-rw-r--r-- | src/SongEnumerator.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SongEnumerator.hxx b/src/SongEnumerator.hxx index 0e268a31a..75295add1 100644 --- a/src/SongEnumerator.hxx +++ b/src/SongEnumerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -20,7 +20,7 @@ #ifndef MPD_SONG_ENUMERATOR_HXX #define MPD_SONG_ENUMERATOR_HXX -struct Song; +class DetachedSong; /** * An object which provides serial access to a number of #Song @@ -35,7 +35,7 @@ public: * freeing the returned #Song object. Returns nullptr if * there are no more songs. */ - virtual Song *NextSong() = 0; + virtual DetachedSong *NextSong() = 0; }; #endif |