mpd/src/db/DatabasePrint.hxx

35 lines
729 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2011-09-05 23:09:20 +02:00
#ifndef MPD_DB_PRINT_H
#define MPD_DB_PRINT_H
#include <cstdint>
#include <span>
enum TagType : uint8_t;
2012-08-29 19:27:03 +02:00
class SongFilter;
struct DatabaseSelection;
struct Partition;
class Response;
2011-09-05 23:09:20 +02:00
2014-02-28 08:14:31 +01:00
/**
* @param full print attributes/tags
* @param base print only base name of songs/directories?
2014-02-28 08:14:31 +01:00
*/
void
db_selection_print(Response &r, Partition &partition,
const DatabaseSelection &selection,
bool full, bool base);
2018-07-25 11:18:45 +02:00
void
PrintSongUris(Response &r, Partition &partition,
const SongFilter *filter);
void
PrintUniqueTags(Response &r, Partition &partition,
std::span<const TagType> tag_types,
const SongFilter *filter);
2011-09-05 23:09:20 +02:00
#endif