ES-DE/source/clippathelement.h
Leon Styhre 32546b5874 Squashed 'external/lunasvg/' content from commit 7417baa0a
git-subtree-dir: external/lunasvg
git-subtree-split: 7417baa0aff477f361e44e2aa793fdb0c7aae352
2022-10-03 18:25:42 +02:00

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