diff options
Diffstat (limited to 'WebCore/svg/SVGAElement.h')
-rw-r--r-- | WebCore/svg/SVGAElement.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/WebCore/svg/SVGAElement.h b/WebCore/svg/SVGAElement.h index 3debf8a..b43f192 100644 --- a/WebCore/svg/SVGAElement.h +++ b/WebCore/svg/SVGAElement.h @@ -23,6 +23,7 @@ #define SVGAElement_h #if ENABLE(SVG) + #include "SVGExternalResourcesRequired.h" #include "SVGLangSpace.h" #include "SVGStyledTransformableElement.h" @@ -37,8 +38,10 @@ namespace WebCore { public SVGLangSpace, public SVGExternalResourcesRequired { public: + static PassRefPtr<SVGAElement> create(const QualifiedName&, Document*); + + private: SVGAElement(const QualifiedName&, Document*); - virtual ~SVGAElement(); virtual bool isValid() const { return SVGTests::isValid(); } @@ -59,7 +62,6 @@ namespace WebCore { virtual bool childShouldCreateRenderer(Node*) const; - private: DECLARE_ANIMATED_PROPERTY(SVGAElement, SVGNames::targetAttr, String, Target, target) // SVGURIReference @@ -72,4 +74,5 @@ namespace WebCore { } // namespace WebCore #endif // ENABLE(SVG) + #endif // SVGAElement_h |