11 lines
216 B
C++
11 lines
216 B
C++
#ifndef __JAVA_PARSER_SPEC_TYPES_H
|
|
#define __JAVA_PARSER_SPEC_TYPES_H
|
|
|
|
#include <cstdint>
|
|
#include <BigEndian.h>
|
|
|
|
typedef BigEndian<uint32_t> u4;
|
|
typedef BigEndian<uint16_t> u2;
|
|
typedef BigEndian<uint8_t> u1;
|
|
|
|
#endif |