diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2010-07-27 19:56:51 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2010-07-27 19:56:51 +0000 |
| commit | afd21a94139c8e747ef048bc64ceea0fc8d3d572 (patch) | |
| tree | 92a17af43d1859cd257df4e9f8870d761585d89d /src/live_effects/parameter/powerstrokepointarray.h | |
| parent | commit missing files (diff) | |
| download | inkscape-afd21a94139c8e747ef048bc64ceea0fc8d3d572.tar.gz inkscape-afd21a94139c8e747ef048bc64ceea0fc8d3d572.zip | |
powerstroke: arbitrary number of control points.
(bzr r9659)
Diffstat (limited to 'src/live_effects/parameter/powerstrokepointarray.h')
| -rw-r--r-- | src/live_effects/parameter/powerstrokepointarray.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/live_effects/parameter/powerstrokepointarray.h b/src/live_effects/parameter/powerstrokepointarray.h index 0a33c0369..66eb3c987 100644 --- a/src/live_effects/parameter/powerstrokepointarray.h +++ b/src/live_effects/parameter/powerstrokepointarray.h @@ -22,6 +22,8 @@ namespace Inkscape { namespace LivePathEffect { +class PowerStrokePointArrayParamKnotHolderEntity; + class PowerStrokePointArrayParam : public ArrayParam<Geom::Point> { public: PowerStrokePointArrayParam( const Glib::ustring& label, @@ -41,6 +43,8 @@ public: virtual bool providesKnotHolderEntities() { return true; } virtual void addKnotHolderEntities(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item); + friend class PowerStrokePointArrayParamKnotHolderEntity; + private: PowerStrokePointArrayParam(const PowerStrokePointArrayParam&); PowerStrokePointArrayParam& operator=(const PowerStrokePointArrayParam&); |
