/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Inspector { class RemoteObjectPropertyModel; class RemoteObject { public: RemoteObject(); RemoteObjectPropertyModel& property_model(); RemoteObject* parent { nullptr }; NonnullOwnPtrVector children; FlatPtr address { 0 }; FlatPtr parent_address { 0 }; String class_name; String name; JsonObject json; NonnullRefPtr m_property_model; }; }