mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
32546b5874
git-subtree-dir: external/lunasvg git-subtree-split: 7417baa0aff477f361e44e2aa793fdb0c7aae352
19 lines
262 B
C++
19 lines
262 B
C++
#ifndef DEFSELEMENT_H
|
|
#define DEFSELEMENT_H
|
|
|
|
#include "graphicselement.h"
|
|
|
|
namespace lunasvg {
|
|
|
|
class DefsElement : public GraphicsElement
|
|
{
|
|
public:
|
|
DefsElement();
|
|
|
|
std::unique_ptr<Node> clone() const;
|
|
};
|
|
|
|
} // namespace lunasvg
|
|
|
|
#endif // DEFSELEMENT_H
|