mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:12:44 +00:00 
			
		
		
		
	 73fdbba59c
			
		
	
	
		73fdbba59c
		
	
	
	
	
		
			
			This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/JsonObject.h>
 | |
| #include <AK/NonnullOwnPtrVector.h>
 | |
| #include <AK/Vector.h>
 | |
| 
 | |
| class RemoteObjectPropertyModel;
 | |
| 
 | |
| class RemoteObject {
 | |
| public:
 | |
|     RemoteObject();
 | |
| 
 | |
|     RemoteObjectPropertyModel& property_model();
 | |
| 
 | |
|     RemoteObject* parent { nullptr };
 | |
|     NonnullOwnPtrVector<RemoteObject> children;
 | |
| 
 | |
|     String address;
 | |
|     String parent_address;
 | |
|     String class_name;
 | |
|     String name;
 | |
| 
 | |
|     JsonObject json;
 | |
| 
 | |
|     NonnullRefPtr<RemoteObjectPropertyModel> m_property_model;
 | |
| };
 |