From 59d2156165877baee8d092ef2c6d74928afdfa30 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 2 Jan 2019 17:08:29 +0100 Subject: [PATCH] Add tagType and tagName to OggVorbisComment --- ogg/oggcontainer.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ogg/oggcontainer.h b/ogg/oggcontainer.h index a095719..5657dc5 100644 --- a/ogg/oggcontainer.h +++ b/ogg/oggcontainer.h @@ -69,6 +69,9 @@ class TAG_PARSER_EXPORT OggVorbisComment : public VorbisComment { public: OggVorbisComment(); + + static constexpr TagType tagType = TagType::OggVorbisComment; + static constexpr const char *tagName = "OGG Vorbis comment"; TagType type() const override; const char *typeName() const override; bool supportsTarget() const override;