mpd/src/TagPrint.hxx

34 lines
656 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_TAG_PRINT_HXX
#define MPD_TAG_PRINT_HXX
#include <cstdint>
2022-07-01 11:29:32 +02:00
#include <string_view>
enum TagType : uint8_t;
2013-07-30 20:11:57 +02:00
struct Tag;
class Response;
void
2018-01-21 11:30:47 +01:00
tag_print_types(Response &response) noexcept;
void
tag_print_types_available(Response &response) noexcept;
void
2022-07-01 11:29:32 +02:00
tag_print(Response &response, TagType type, std::string_view value) noexcept;
void
2018-01-21 11:30:47 +01:00
tag_print(Response &response, TagType type, const char *value) noexcept;
void
2018-01-21 11:30:47 +01:00
tag_print_values(Response &response, const Tag &tag) noexcept;
2013-07-30 20:11:57 +02:00
void
2018-01-21 11:30:47 +01:00
tag_print(Response &response, const Tag &tag) noexcept;
#endif