mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Missing header that should have been added in b8dc105
This commit is contained in:
parent
c05fa78406
commit
4668cf0f93
24
taglib/mpeg/id3v2/id3v2.h
Normal file
24
taglib/mpeg/id3v2/id3v2.h
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user