mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
24 lines
417 B
C
24 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
|