mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:02:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			655 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			655 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/JsonObject.h>
 | |
| #include <AK/NonnullOwnPtrVector.h>
 | |
| #include <AK/String.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 };
 | |
|     String class_name;
 | |
|     String name;
 | |
| 
 | |
|     JsonObject json;
 | |
| 
 | |
|     NonnullRefPtr<RemoteObjectPropertyModel> m_property_model;
 | |
| };
 | |
| 
 | |
| }
 | 
