mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			445 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			445 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef SYMBOLELEMENT_H
 | |
| #define SYMBOLELEMENT_H
 | |
| 
 | |
| #include "styledelement.h"
 | |
| 
 | |
| namespace lunasvg {
 | |
| 
 | |
| class SymbolElement : public StyledElement
 | |
| {
 | |
| public:
 | |
|     SymbolElement();
 | |
| 
 | |
|     Length x() const;
 | |
|     Length y() const;
 | |
|     Length width() const;
 | |
|     Length height() const;
 | |
|     Rect viewBox() const;
 | |
|     PreserveAspectRatio preserveAspectRatio() const;
 | |
| 
 | |
|     std::unique_ptr<Node> clone() const;
 | |
| };
 | |
| 
 | |
| } // namespace lunasvg
 | |
| 
 | |
| #endif // SYMBOLELEMENT_H
 | 
