From 8e0f468e79263dc7f9a6364ca1a26036906642bc Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Jun 2017 14:32:08 -0700 Subject: Json? I'm honestly not sure what kind of interface I want here, or how to organize it. It may just be better to expand the whole thing, spread it out some. --- src/unstable/json.cpp | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/unstable/json.cpp (limited to 'src/unstable/json.cpp') diff --git a/src/unstable/json.cpp b/src/unstable/json.cpp new file mode 100644 index 0000000..0769836 --- /dev/null +++ b/src/unstable/json.cpp @@ -0,0 +1,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; +} -- cgit v1.2.3