26 #ifndef TAGLIB_INFOTAG_H 27 #define TAGLIB_INFOTAG_H 81 class StringHandlerPrivate;
83 std::unique_ptr<StringHandlerPrivate> d;
110 Tag(
const Tag &) =
delete;
111 Tag &operator=(
const Tag &) =
delete;
115 String title()
const override;
116 String artist()
const override;
117 String album()
const override;
118 String comment()
const override;
120 unsigned int year()
const override;
121 unsigned int track()
const override;
123 void setTitle(
const String &s)
override;
124 void setArtist(
const String &s)
override;
125 void setAlbum(
const String &s)
override;
126 void setComment(
const String &s)
override;
127 void setGenre(
const String &s)
override;
128 void setYear(
unsigned int i)
override;
129 void setTrack(
unsigned int i)
override;
131 bool isEmpty()
const override;
134 void removeUnsupportedProperties(
const StringList &props)
override;
198 std::unique_ptr<TagPrivate> d;
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
A byte vector.
Definition: tbytevector.h:45
An abstraction for the string to data encoding in Info tags.
Definition: infotag.h:59
#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
#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
The main class in the INFO tag implementation.
Definition: infotag.h:95