mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
17 lines
251 B
C++
17 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
|