Files
godot-cpp/include/gen/JSON.hpp
karroffel e9517a7b3b implemented instance binding data usage
This commit changes the way C++ wrapper classes work.
Previously, wrapper classes were merely wrapper *interfaces*.
They used the `this` pointer to store the actual foreign Godot
Object.

With the NativeScript 1.1 extension it is now possible to have
low-overhead language binding data attached to Objects.

The C++ bindings use that feature to implement *proper* wrappers
and enable regular C++ inheritance usage that way.

Some things might still be buggy and untested, but the C++
SimpleDemo works with those changes.
2018-07-25 14:06:08 +02:00

48 lines
1018 B
C++

#ifndef GODOT_CPP_JSON_HPP
#define GODOT_CPP_JSON_HPP
#include <gdnative_api_struct.gen.h>
#include <stdint.h>
#include <core/CoreTypes.hpp>
#include <core/Ref.hpp>
#include <Object.hpp>
namespace godot {
class JSONParseResult;
class JSON : public Object {
static JSON *_singleton;
JSON();
public:
static void *___get_type_tag();
static void *___get_base_type_tag();
static inline JSON *get_singleton()
{
if (!JSON::_singleton) {
JSON::_singleton = new JSON;
}
return JSON::_singleton;
}
static inline const char *___get_class_name() { return (const char *) "JSON"; }
static inline Object *___get_from_variant(Variant a) { godot_object *o = (godot_object*) a; return (Object *) godot::nativescript_1_1_api->godot_nativescript_get_instance_binding_data(godot::_RegisterState::language_index, o); }
// enums
// constants
// methods
String print(const Variant value, const String indent = "", const bool sort_keys = false);
Ref<JSONParseResult> parse(const String json);
};
}
#endif