mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			751 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			751 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/Variant.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <LibXML/FundamentalTypes.h>
 | |
| 
 | |
| namespace XML {
 | |
| 
 | |
| struct Attribute {
 | |
|     Name name;
 | |
|     DeprecatedString value;
 | |
| };
 | |
| 
 | |
| struct Node {
 | |
|     struct Text {
 | |
|         StringBuilder builder;
 | |
|     };
 | |
|     struct Comment {
 | |
|         DeprecatedString text;
 | |
|     };
 | |
|     struct Element {
 | |
|         Name name;
 | |
|         HashMap<Name, DeprecatedString> attributes;
 | |
|         Vector<NonnullOwnPtr<Node>> children;
 | |
|     };
 | |
| 
 | |
|     bool operator==(Node const&) const;
 | |
| 
 | |
|     Variant<Text, Comment, Element> content;
 | |
|     Node* parent { nullptr };
 | |
| };
 | |
| }
 | 
