mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
16 lines
233 B
C++
16 lines
233 B
C++
![]() |
#include "styleelement.h"
|
||
|
|
||
|
namespace lunasvg {
|
||
|
|
||
|
StyleElement::StyleElement()
|
||
|
: Element(ElementId::Style)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
std::unique_ptr<Node> StyleElement::clone() const
|
||
|
{
|
||
|
return cloneElement<StyleElement>();
|
||
|
}
|
||
|
|
||
|
} // namespace lunasvg
|