1 #ifndef __SP_OBJECT_REPR_H__
2 #define __SP_OBJECT_REPR_H__
4 /*
5 * Object type dictionary and build frontend
6 *
7 * Authors:
8 * Lauris Kaplinski <lauris@kaplinski.com>
9 *
10 * Copyright (C) 1999-2003 Lauris Kaplinski
11 *
12 * Released under GNU GPL, read the file 'COPYING' for more information
13 */
15 #include "forward.h"
17 namespace Inkscape {
18 namespace XML {
19 class Node;
20 }
21 }
24 SPObject *sp_object_repr_build_tree (SPDocument *document, Inkscape::XML::Node *repr);
26 GType sp_repr_type_lookup (Inkscape::XML::Node *repr);
28 void sp_object_type_register(gchar const *name, GType type);
30 #endif
32 /*
33 Local Variables:
34 mode:c++
35 c-file-style:"stroustrup"
36 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
37 indent-tabs-mode:nil
38 fill-column:99
39 End:
40 */
41 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :