diff options
author | Max Kellermann <max@duempel.org> | 2013-07-28 13:25:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-28 13:25:12 +0200 |
commit | ba161ec572b98d3bcf9f735ff122133319fe896a (patch) | |
tree | a211690e3a8b7fce1fb6db540228122bead1f2bc /src/PlaylistSong.hxx | |
parent | 43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708 (diff) | |
download | mpd-ba161ec572b98d3bcf9f735ff122133319fe896a.tar.gz mpd-ba161ec572b98d3bcf9f735ff122133319fe896a.tar.xz mpd-ba161ec572b98d3bcf9f735ff122133319fe896a.zip |
song: convert header to C++
Diffstat (limited to '')
-rw-r--r-- | src/PlaylistSong.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/PlaylistSong.hxx b/src/PlaylistSong.hxx index 117ee1338..68c99c4ec 100644 --- a/src/PlaylistSong.hxx +++ b/src/PlaylistSong.hxx @@ -20,6 +20,8 @@ #ifndef MPD_PLAYLIST_SONG_HXX #define MPD_PLAYLIST_SONG_HXX +struct Song; + /** * Verifies the song, returns NULL if it is unsafe. Translate the * song to a new song object within the database, if it is a local @@ -28,8 +30,8 @@ * @param secure if true, then local files are only allowed if they * are relative to base_uri */ -struct song * -playlist_check_translate_song(struct song *song, const char *base_uri, +Song * +playlist_check_translate_song(Song *song, const char *base_uri, bool secure); #endif |