tagparser/vorbis/vorbispackagetypes.h

22 lines
378 B
C
Raw Normal View History

#ifndef TAG_PARSER_VORBISPACKAGETYPES_H
#define TAG_PARSER_VORBISPACKAGETYPES_H
2015-04-22 19:22:01 +02:00
2016-05-16 20:56:53 +02:00
#include <c++utilities/conversion/types.h>
namespace TagParser {
2015-04-22 19:22:01 +02:00
/*!
* \brief Encapsulates known Vorbis package type IDs.
*/
namespace VorbisPackageTypes {
enum KnownType : byte {
Identification = 0x1,
Comments = 0x3,
Setup = 0x5
};
}
}
#endif // TAG_PARSER_VORBISPACKAGETYPES_H