mpd/src/SongPrint.hxx

26 lines
562 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-01-02 20:29:24 +01:00
#ifndef MPD_SONG_PRINT_HXX
#define MPD_SONG_PRINT_HXX
struct LightSong;
class DetachedSong;
class Response;
void
2018-01-21 11:30:09 +01:00
song_print_info(Response &r, const DetachedSong &song,
bool base=false) noexcept;
void
2018-01-21 11:30:09 +01:00
song_print_info(Response &r, const LightSong &song, bool base=false) noexcept;
void
2018-01-21 11:30:09 +01:00
song_print_uri(Response &r, const LightSong &song, bool base=false) noexcept;
void
2018-01-21 11:30:09 +01:00
song_print_uri(Response &r, const DetachedSong &song,
bool base=false) noexcept;
#endif