KHTML
SVGPathSegList.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef SVGPathSegList_h
00023 #define SVGPathSegList_h
00024
00025 #if ENABLE(SVG)
00026 #include "SVGList.h"
00027 #include "SVGPathSeg.h"
00028
00029 namespace WebCore {
00030
00031 class Path;
00032 class SVGElement;
00033
00034 class SVGPathSegList : public SVGList<RefPtr<SVGPathSeg> > {
00035 public:
00036 static PassRefPtr<SVGPathSegList> create(const QualifiedName& attributeName) { return adoptRef(new SVGPathSegList(attributeName)); }
00037 virtual ~SVGPathSegList();
00038
00039 unsigned getPathSegAtLength(double);
00040 Path toPathData();
00041
00042 private:
00043 SVGPathSegList(const QualifiedName&);
00044 };
00045
00046 }
00047
00048 #endif // ENABLE(SVG)
00049 #endif