summaryrefslogtreecommitdiff
path: root/src/unstable/json.cpp
blob: 07698362464da81ddb57e1016e8aa0baf5c964ca (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "bu/json.h"

Bu::Json::Base::Base()
{
}

Bu::Json::Base::~Base()
{
}

Bu::Json::Object::Object()
{
}

Bu::Json::Object::~Object()
{
}

Bu::Json::Type Bu::Json::Object::getType()
{
    return tObject;
}

Bu::Json::Array::Array()
{
}

Bu::Json::Array::~Array()
{
}

Bu::Json::Type Bu::Json::Array::getType()
{
    return tArray;
}

Bu::Json::String::String()
{
}

Bu::Json::String::~String()
{
}

Bu::Json::Type Bu::Json::String::getType()
{
    return tString;
}

Bu::Json::Number::Number()
{
}

Bu::Json::Number::~Number()
{
}

Bu::Json::Type Bu::Json::Number::getType()
{
    return tNumber;
}

Bu::Json::Boolean::Boolean()
{
}

Bu::Json::Boolean::~Boolean()
{
}

Bu::Json::Type Bu::Json::Boolean::getType()
{
    return tBoolean;
}

Bu::Json::Null::Null()
{
}

Bu::Json::Null::~Null()
{
}

Bu::Json::Type Bu::Json::Null::getType()
{
    return tNull;
}