Code

Split SPCanvasItem and SPCanvasGroup to individual .h files. Removed forward header.
[inkscape.git] / src / display / sp-canvas-group.h
1 #ifndef SEEN_SP_CANVAS_GROUP_H
2 #define SEEN_SP_CANVAS_GROUP_H
4 /** \file
5  * SPCanvasGroup
6  *
7  * Authors:
8  *   Federico Mena <federico@nuclecu.unam.mx>
9  *   Raph Levien <raph@gimp.org>
10  *   Lauris Kaplinski <lauris@kaplinski.com>
11  *   Jon A. Cruz <jon@joncruz.org>
12  *
13  * Copyright (C) 1998 The Free Software Foundation
14  * Copyright (C) 2002 Lauris Kaplinski
15  * Copyright (C) 2010 authors
16  *
17  * Released under GNU GPL, read the file 'COPYING' for more information
18  */
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
24 #include <glib-object.h>
26 #define SP_TYPE_CANVAS_GROUP (sp_canvas_group_get_type())
27 #define SP_CANVAS_GROUP(obj) (GTK_CHECK_CAST((obj), SP_TYPE_CANVAS_GROUP, SPCanvasGroup))
28 #define SP_IS_CANVAS_GROUP(obj) (GTK_CHECK_TYPE((obj), SP_TYPE_CANVAS_GROUP))
30 GType sp_canvas_group_get_type();
34 #endif // SEEN_SP_CANVAS_GROUP_H
36 /*
37   Local Variables:
38   mode:c++
39   c-file-style:"stroustrup"
40   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
41   indent-tabs-mode:nil
42   fill-column:99
43   End:
44 */
45 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :