From 4668cf0f9394e35ff5c2aa44797dcc31d6dc73d3 Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Wed, 11 Sep 2019 00:42:15 +0200 Subject: [PATCH] Missing header that should have been added in b8dc105 --- taglib/mpeg/id3v2/id3v2.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 taglib/mpeg/id3v2/id3v2.h diff --git a/taglib/mpeg/id3v2/id3v2.h b/taglib/mpeg/id3v2/id3v2.h new file mode 100644 index 00000000..bef82519 --- /dev/null +++ b/taglib/mpeg/id3v2/id3v2.h @@ -0,0 +1,24 @@ +#ifndef TAGLIB_ID3V2_H +#define TAGLIB_ID3V2_H + +namespace TagLib { + //! An ID3v2 implementation + + /*! + * This is a relatively complete and flexible framework for working with ID3v2 + * tags. + * + * \see ID3v2::Tag + */ + namespace ID3v2 { + /*! + * Used to specify which version of the ID3 standard to use when saving tags. + */ + enum Version { + v3 = 3, //