tagparser/vorbis/vorbispackagetypes.h

18 lines
373 B
C
Raw Permalink Normal View History

#ifndef TAG_PARSER_VORBISPACKAGETYPES_H
#define TAG_PARSER_VORBISPACKAGETYPES_H
2015-04-22 19:22:01 +02:00
2019-03-13 19:06:42 +01:00
#include <cstdint>
2016-05-16 20:56:53 +02:00
namespace TagParser {
2015-04-22 19:22:01 +02:00
/*!
* \brief Encapsulates known Vorbis package type IDs.
*/
namespace VorbisPackageTypes {
2019-03-13 19:06:42 +01:00
enum KnownType : std::uint8_t { 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