mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-01 05:41:01 +00:00 
			
		
		
		
	 04b9dc2d30
			
		
	
	
		04b9dc2d30
		
	
	
	
	
		
			
			Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/AKString.h>
 | |
| #include <LibHTML/DOM/Node.h>
 | |
| 
 | |
| class Text final : public Node {
 | |
| public:
 | |
|     explicit Text(const String&);
 | |
|     virtual ~Text() override;
 | |
| 
 | |
|     const String& data() const { return m_data; }
 | |
| 
 | |
| private:
 | |
|     String m_data;
 | |
| };
 |