blob: abf65ded832f27b63413b426633efb2c61aa77e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef INKSCAPE_LPE_CLONE_ORIGINAL_H
#define INKSCAPE_LPE_CLONE_ORIGINAL_H
/*
* Inkscape::LPECloneOriginal
*
* Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/effect.h"
#include "live_effects/parameter/originalpath.h"
namespace Inkscape {
namespace LivePathEffect {
class LPECloneOriginal : public Effect {
public:
LPECloneOriginal(LivePathEffectObject *lpeobject);
virtual ~LPECloneOriginal();
virtual void doEffect (SPCurve * curve);
private:
OriginalPathParam linked_path;
private:
LPECloneOriginal(const LPECloneOriginal&);
LPECloneOriginal& operator=(const LPECloneOriginal&);
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|