SVGTextElement.h 389 B

1234567891011121314
  1. #import <Foundation/Foundation.h>
  2. #import "SVGTextPositioningElement.h"
  3. #import "ConverterSVGToCALayer.h"
  4. #import "SVGTransformable.h"
  5. /**
  6. http://www.w3.org/TR/2011/REC-SVG11-20110816/text.html#TextElement
  7. interface SVGTextElement : SVGTextPositioningElement, SVGTransformable
  8. */
  9. @interface SVGTextElement : SVGTextPositioningElement <SVGTransformable, ConverterSVGToCALayer>
  10. @end