1 #ifndef TAGLIB_ID3V2_H
2 #define TAGLIB_ID3V2_H
3 
4 namespace TagLib {
5   //! An ID3v2 implementation
6 
7   /*!
8    * This is a relatively complete and flexible framework for working with ID3v2
9    * tags.
10    *
11    * \see ID3v2::Tag
12    */
13   namespace ID3v2 {
14     /*!
15      * Used to specify which version of the ID3 standard to use when saving tags.
16      */
17     enum Version {
18       v3 = 3, //<! ID3v2.3
19       v4 = 4  //<! ID3v2.4
20     };
21   }
22 }
23 
24 #endif
25