aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagPrint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/TagPrint.hxx')
-rw-r--r--src/TagPrint.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/TagPrint.hxx b/src/TagPrint.hxx
index ccc0c9aa4..48ddc28ec 100644
--- a/src/TagPrint.hxx
+++ b/src/TagPrint.hxx
@@ -20,12 +20,19 @@
#ifndef MPD_TAG_PRINT_HXX
#define MPD_TAG_PRINT_HXX
+#include <stdint.h>
+
+enum TagType : uint8_t;
+
struct Tag;
class Client;
void tag_print_types(Client &client);
void
+tag_print(Client &client, TagType type, const char *value);
+
+void
tag_print(Client &client, const Tag &tag);
#endif