21 #ifndef TAGLIB_MATROSKATAG_H 22 #define TAGLIB_MATROSKATAG_H 44 #ifndef DO_NOT_DOCUMENT 55 String title()
const override;
56 String artist()
const override;
57 String album()
const override;
58 String comment()
const override;
60 unsigned int year()
const override;
61 unsigned int track()
const override;
62 void setTitle(
const String &s)
override;
63 void setArtist(
const String &s)
override;
64 void setAlbum(
const String &s)
override;
65 void setComment(
const String &s)
override;
66 void setGenre(
const String &s)
override;
67 void setYear(
unsigned int i)
override;
68 void setTrack(
unsigned int i)
override;
69 bool isEmpty()
const override;
72 void removeUnsupportedProperties(
const StringList &properties)
override;
77 StringList complexPropertyKeys()
const override;
110 void insertSimpleTag(
unsigned int index,
const SimpleTag &tag);
115 void removeSimpleTag(
unsigned int index);
121 unsigned long long trackUid = 0);
128 unsigned long long trackUid,
unsigned long long editionUid,
129 unsigned long long chapterUid = 0,
unsigned long long attachmentUid = 0);
134 void clearSimpleTags();
143 friend class EBML::MkTags;
147 void setSegmentTitle(
const String &title);
153 std::unique_ptr<TagPrivate> d;
A generic, implicitly shared list.
Definition: tlist.h:53
A map for format-independent <key,values> tag representations.
Definition: tpropertymap.h:122
A simple, generic interface to common audio metadata fields.
Definition: tag.h:48
TargetTypeValue
Specifies the level of other elements the tag value applies to.
Definition: matroskasimpletag.h:38
A wide string class suitable for unicode.
Definition: tstring.h:82
A byte vector.
Definition: tbytevector.h:45
Matroska tag implementation.
Definition: matroskatag.h:43
#define TAGLIB_MSVC_SUPPRESS_WARNING_NEEDS_TO_HAVE_DLL_INTERFACE
Definition: taglib_export.h:55
Attribute of Matroska metadata.
Definition: matroskasimpletag.h:34
A list of strings.
Definition: tstringlist.h:43
#define TAGLIB_EXPORT
Definition: taglib_export.h:40
String TAGLIB_EXPORT genre(int index)
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
An implementation of TagLib::File with Matroska specific methods.
Definition: matroskafile.h:39