8 class Object :
public std::enable_shared_from_this<Object> {
9 std::vector<Property> _properties, _object_properties;
17 std::shared_ptr<const Type> type()
const;
23 uint64_t id()
const {
return _id; }
25 void setId(uint64_t
id);
27 auto recurse(
const F &f)
28 -> decltype(f(std::shared_ptr<Object>(), std::shared_ptr<Object>())) {
29 forEachObject((
void *)&f,
30 [](
void *context,
const Object *parent,
const Object *child) {
31 auto *f = (F *)context;
32 auto p = parent ? ((
Object *)parent)->shared_from_this()
34 if (
auto c = (child ? ((
Object *)child)->shared_from_this()
42 auto recurse(
const F &f) -> decltype(f(std::shared_ptr<Object>())) {
43 forEachObject((
void *)&f,
44 [](
void *context,
const Object *parent,
const Object *child) {
45 auto *f = (F *)context;
46 if (
auto c = (child ? ((
Object *)child)->shared_from_this()