blob: 344e02c1da92f7c6db4e10ecab08a213ef8937b5 (
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
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/DeprecatedString.h>
#include <AK/JsonObject.h>
#include <AK/NonnullOwnPtrVector.h>
namespace Inspector {
class RemoteObjectPropertyModel;
class RemoteObject {
public:
RemoteObject();
RemoteObjectPropertyModel& property_model();
RemoteObject* parent { nullptr };
NonnullOwnPtrVector<RemoteObject> children;
FlatPtr address { 0 };
FlatPtr parent_address { 0 };
DeprecatedString class_name;
DeprecatedString name;
JsonObject json;
NonnullRefPtr<RemoteObjectPropertyModel> m_property_model;
};
}
|