diff options
Diffstat (limited to 'src/tag/Tag.hxx')
-rw-r--r-- | src/tag/Tag.hxx | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/tag/Tag.hxx b/src/tag/Tag.hxx index 51b6178be..fc9ad0bbb 100644 --- a/src/tag/Tag.hxx +++ b/src/tag/Tag.hxx @@ -21,6 +21,7 @@ #define MPD_TAG_HXX #include "TagType.h" +#include "TagItem.hxx" #include "gcc.h" #include <algorithm> @@ -28,21 +29,6 @@ #include <stddef.h> /** - * One tag value. It is a mapping of #tag_type to am arbitrary string - * value. Each tag can have multiple items of one tag type (although - * few clients support that). - */ -struct TagItem { - /** the type of this item */ - enum tag_type type; - - /** - * the value of this tag; this is a variable length string - */ - char value[sizeof(long)]; -} gcc_packed; - -/** * The meta information about a song file. It is a MPD specific * subset of tags (e.g. from ID3, vorbis comments, ...). */ |