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