blob: f256b343d8302e845c9cd106271d8022988cedb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
#include "Field.hpp"
class FieldParser {
public:
static Field ParseVarInt(byte *data, size_t len);
static Field ParseBool(byte *data);
static Field ParseString(byte *data);
static Field Parse(FieldType type, byte* data, size_t len=0);
static Field ParseLong(byte *data);
static Field ParseInt(byte *data);
static Field ParseUByte(byte *data);
static Field ParseByte(byte *data);
static Field ParseFloat(byte *data);
static Field ParsePosition(byte *data);
static Field ParseDouble(byte *data);
static Field ParseByteArray(byte *data, size_t len);
};
|