aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagPrint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/TagPrint.hxx')
-rw-r--r--src/TagPrint.hxx12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/TagPrint.hxx b/src/TagPrint.hxx
index ccc0c9aa4..6675bb7d8 100644
--- a/src/TagPrint.hxx
+++ b/src/TagPrint.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2013 The Music Player Daemon Project
+ * Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -20,12 +20,22 @@
#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_values(Client &client, const Tag &tag);
+
+void
tag_print(Client &client, const Tag &tag);
#endif