mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
19 lines
320 B
C++
19 lines
320 B
C++
#ifndef GELEMENT_H
|
|
#define GELEMENT_H
|
|
|
|
#include "graphicselement.h"
|
|
|
|
namespace lunasvg {
|
|
|
|
class GElement : public GraphicsElement
|
|
{
|
|
public:
|
|
GElement();
|
|
|
|
void layout(LayoutContext* context, LayoutContainer* current) const;
|
|
std::unique_ptr<Node> clone() const;
|
|
};
|
|
|
|
} // namespace lunasvg
|
|
|
|
#endif // GELEMENT_H
|