mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
19 lines
251 B
C
19 lines
251 B
C
|
#ifndef STYLEELEMENT_H
|
||
|
#define STYLEELEMENT_H
|
||
|
|
||
|
#include "element.h"
|
||
|
|
||
|
namespace lunasvg {
|
||
|
|
||
|
class StyleElement : public Element
|
||
|
{
|
||
|
public:
|
||
|
StyleElement();
|
||
|
|
||
|
std::unique_ptr<Node> clone() const;
|
||
|
};
|
||
|
|
||
|
} // namespace lunasvg
|
||
|
|
||
|
#endif // STYLEELEMENT_H
|