~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/live_effects/lpe-skeleton.cpp

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#define INKSCAPE_LPE_SKELETON_CPP
2
2
/** \file
3
 
 * LPE <skeleton> implementation, used as an example for a base starting class
4
 
 * when implementing new LivePathEffects.
 
3
 * @brief Minimal dummy LPE effect implementation, used as an example for a base
 
4
 * starting class when implementing new LivePathEffects.
5
5
 *
6
6
 * In vi, three global search-and-replaces will let you rename everything
7
7
 * in this and the .h file:
10
10
 *   :%s/Skeleton/Yourname/g
11
11
 *   :%s/skeleton/yourname/g
12
12
 */
13
 
/*
14
 
 * Authors:
15
 
 *   Johan Engelen
 
13
/* Authors:
 
14
 *   Johan Engelen <j.b.c.engelen@utwente.nl>
16
15
 *
17
 
 * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
 
16
 * Copyright (C) 2007 Authors
18
17
 *
19
18
 * Released under GNU GPL, read the file 'COPYING' for more information
20
19
 */
84
83
 *  Define the classes for your knotholder handles here
85
84
 */
86
85
 
87
 
/**
 
86
/*
88
87
namespace Skeleton {
89
88
 
90
89
class KnotHolderEntityMyHandle : public LPEKnotHolderEntity
97
96
};
98
97
 
99
98
} // namespace Skeleton
100
 
**/
 
99
*/
101
100
 
102
101
/* ######################## */
103
102
 
113
112
  fill-column:99
114
113
  End:
115
114
*/
116
 
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
 
115
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :