tagparser/vorbis/vorbispackagetypes.h

22 lines
341 B
C
Raw Normal View History

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