diff options
Diffstat (limited to 'src/SongPrint.hxx')
-rw-r--r-- | src/SongPrint.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/SongPrint.hxx b/src/SongPrint.hxx index f8df89d38..7bbf6e19c 100644 --- a/src/SongPrint.hxx +++ b/src/SongPrint.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 @@ -21,12 +21,19 @@ #define MPD_SONG_PRINT_HXX struct Song; +class DetachedSong; class Client; void +song_print_info(Client &client, const DetachedSong &song); + +void song_print_info(Client &client, const Song &song); void song_print_uri(Client &client, const Song &song); +void +song_print_uri(Client &client, const DetachedSong &song); + #endif |