aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Wheeler <scott@directededge.com>2019-09-11 00:42:15 +0200
committerScott Wheeler <scott@directededge.com>2019-09-11 00:42:15 +0200
commit4668cf0f9394e35ff5c2aa44797dcc31d6dc73d3 (patch)
tree8b9c53b25d98389865fa1ef4d71f110fb75b82a4
parentc05fa78406fd8ce7382a11c1f63a17c4bfbe83fa (diff)
Missing header that should have been added in b8dc105
-rw-r--r--taglib/mpeg/id3v2/id3v2.h24
1 files changed, 24 insertions, 0 deletions
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, //<! ID3v2.3
+ v4 = 4 //<! ID3v2.4
+ };
+ }
+}
+
+#endif