26 #ifndef TAGLIB_ASFTAG_H 27 #define TAGLIB_ASFTAG_H 55 Tag &operator=(
const Tag &) =
delete;
60 String title()
const override;
65 String artist()
const override;
71 String album()
const override;
76 String comment()
const override;
87 virtual String rating()
const;
93 virtual String copyright()
const;
98 unsigned int year()
const override;
104 unsigned int track()
const override;
109 void setTitle(
const String &value)
override;
114 void setArtist(
const String &value)
override;
120 void setAlbum(
const String &value)
override;
125 void setComment(
const String &value)
override;
130 virtual void setRating(
const String &value);
135 virtual void setCopyright(
const String &value);
140 void setGenre(
const String &value)
override;
145 void setYear(
unsigned int value)
override;
150 void setTrack(
unsigned int value)
override;
157 bool isEmpty()
const override;
175 bool contains(
const String &key)
const;
180 void removeItem(
const String &key);
206 void removeUnsupportedProperties(
const StringList &props)
override;
209 StringList complexPropertyKeys()
const override;
217 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
A wide string class suitable for unicode.
Definition: tstring.h:82
#define TAGLIB_MSVC_SUPPRESS_WARNING_NEEDS_TO_HAVE_DLL_INTERFACE
Definition: taglib_export.h:55
A generic, implicitly shared map.
Definition: tmap.h:44
A list of strings.
Definition: tstringlist.h:43
An implementation of ASF (WMA) tags.
Definition: asftag.h:44
#define TAGLIB_EXPORT
Definition: taglib_export.h:40
String TAGLIB_EXPORT genre(int index)
An implementation of TagLib::File with ASF specific methods.
Definition: asffile.h:46
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
Attribute of ASF (WMA) metadata.
Definition: asfattribute.h:43