mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			251 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			251 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef STYLEELEMENT_H
 | |
| #define STYLEELEMENT_H
 | |
| 
 | |
| #include "element.h"
 | |
| 
 | |
| namespace lunasvg {
 | |
| 
 | |
| class StyleElement : public Element {
 | |
| public:
 | |
|     StyleElement();
 | |
| 
 | |
|     std::unique_ptr<Node> clone() const;
 | |
| };
 | |
| 
 | |
| } // namespace lunasvg
 | |
| 
 | |
| #endif // STYLEELEMENT_H
 | 
