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