tagparser/vorbis/vorbispackagetypes.h

18 lines
389 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 {
2018-03-07 01:17:50 +01:00
enum KnownType : byte { Identification = 0x1, Comments = 0x3, Setup = 0x5 };
2015-04-22 19:22:01 +02:00
}
2018-03-07 01:17:50 +01:00
} // namespace TagParser
2015-04-22 19:22:01 +02:00
#endif // TAG_PARSER_VORBISPACKAGETYPES_H