Code

moving trunk for module inkscape
[inkscape.git] / src / sp-path.h
1 #ifndef __SP_PATH_H__
2 #define __SP_PATH_H__
4 /*
5  * SVG <path> implementation
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *
10  * Copyright (C) 1999-2002 Lauris Kaplinski
11  * Copyright (C) 2000-2001 Ximian, Inc.
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #include "sp-shape.h"
17 #include "sp-conn-end-pair.h"
20 #define SP_TYPE_PATH (sp_path_get_type ())
21 #define SP_PATH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_PATH, SPPath))
22 #define SP_IS_PATH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_PATH))
24 struct SPPath : public SPShape {
25     SPConnEndPair connEndPair;
26 };
28 struct SPPathClass {
29     SPShapeClass shape_class;
30 };
32 GType sp_path_get_type (void);
35 #endif
37 /*
38   Local Variables:
39   mode:c++
40   c-file-style:"stroustrup"
41   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
42   indent-tabs-mode:nil
43   fill-column:99
44   End:
45 */
46 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :