mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
18 lines
251 B
C++
18 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
|