ES-DE/source/graphicselement.h

19 lines
282 B
C
Raw Normal View History

#ifndef GRAPHICSELEMENT_H
#define GRAPHICSELEMENT_H
#include "styledelement.h"
namespace lunasvg {
class GraphicsElement : public StyledElement
{
public:
GraphicsElement(ElementId id);
Transform transform() const;
};
} // namespace lunasvg
#endif // GRAPHICSELEMENT_H