2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2013-01-02 20:29:24 +01:00
|
|
|
#ifndef MPD_SONG_PRINT_HXX
|
|
|
|
#define MPD_SONG_PRINT_HXX
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
struct LightSong;
|
2014-01-07 21:39:47 +01:00
|
|
|
class DetachedSong;
|
2015-08-06 22:10:25 +02:00
|
|
|
class Response;
|
2008-09-23 20:48:39 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_info(Response &r, const DetachedSong &song,
|
|
|
|
bool base=false) noexcept;
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2010-02-08 10:21:15 +01:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_info(Response &r, const LightSong &song, bool base=false) noexcept;
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_uri(Response &r, const LightSong &song, bool base=false) noexcept;
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_uri(Response &r, const DetachedSong &song,
|
|
|
|
bool base=false) noexcept;
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2008-09-07 13:35:01 +02:00
|
|
|
#endif
|