mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			417 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			417 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CLIPPATHELEMENT_H
 | |
| #define CLIPPATHELEMENT_H
 | |
| 
 | |
| #include "graphicselement.h"
 | |
| 
 | |
| namespace lunasvg {
 | |
| 
 | |
| class LayoutClipPath;
 | |
| 
 | |
| class ClipPathElement : public GraphicsElement {
 | |
| public:
 | |
|     ClipPathElement();
 | |
| 
 | |
|     Units clipPathUnits() const;
 | |
|     std::unique_ptr<LayoutClipPath> getClipper(LayoutContext* context) const;
 | |
| 
 | |
|     std::unique_ptr<Node> clone() const;
 | |
| };
 | |
| 
 | |
| } // namespace lunasvg
 | |
| 
 | |
| #endif // CLIPPATHELEMENT_H
 | 
