mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +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
|