X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Flive_effects%2Flpe-skeleton.h;h=c8b3157735214f003020a8cd6ce9885b221d34c6;hb=e9c4a66f3db12ac811f42b73493c1c88460f0de3;hp=c273b9c45e0c5fb0f26501dad3c1ae30e816dd05;hpb=4b9b63a91da8fd8538b1cf3ce3ec3ea78522176e;p=inkscape.git diff --git a/src/live_effects/lpe-skeleton.h b/src/live_effects/lpe-skeleton.h index c273b9c45..c8b315773 100644 --- a/src/live_effects/lpe-skeleton.h +++ b/src/live_effects/lpe-skeleton.h @@ -2,14 +2,14 @@ #define INKSCAPE_LPE_SKELETON_H /** \file - * LPE implementation, see sp-skeleton.cpp. + * LPE implementation, see lpe-skeleton.cpp. */ /* * Authors: * Johan Engelen -* -* Copyright (C) Johan Engelen 2007 + * + * Copyright (C) Johan Engelen 2007 * * Released under GNU GPL, read the file 'COPYING' for more information */ @@ -28,9 +28,8 @@ public: // Choose to implement one of the doEffect functions. You can delete or comment out the others. // virtual void doEffect (SPCurve * curve); -// virtual NArtBpath * doEffect_nartbpath (NArtBpath * path_in); -// virtual std::vector doEffect_path (std::vector & path_in); - virtual Geom::Piecewise > doEffect_pwd2 (Geom::Piecewise > & pwd2_in); +// virtual std::vector doEffect_path (std::vector const & path_in); + virtual Geom::Piecewise > doEffect_pwd2 (Geom::Piecewise > const & pwd2_in); private: // add the parameters for your effect here: @@ -45,3 +44,14 @@ private: } //namespace Inkscape #endif + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :