LeviLamina
Loading...
Searching...
No Matches
FieldType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class FieldType : uchar {
8 KFixed8 = 0,
9 KFixed32 = 1,
10 KFixed64 = 2,
11 KVarInt = 3,
12 KString = 4,
13};
14
15}