Code

moving trunk for module inkscape
[inkscape.git] / src / layer-fns.h
1 /*
2  * assorted functions related to layers
3  *
4  * Authors:
5  *   MenTaLguY <mental@rydia.net>
6  *
7  * Copyright (C) 2004 MenTaLguY
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef SEEN_INKSCAPE_LAYER_FNS_H
13 #define SEEN_INKSCAPE_LAYER_FNS_H
15 class SPObject;
17 namespace Inkscape {
19 SPObject *create_layer(SPObject *root, SPObject *layer);
21 SPObject *next_layer(SPObject *root, SPObject *layer);
23 SPObject *previous_layer(SPObject *root, SPObject *layer);
25 }
27 #endif
28 /*
29   Local Variables:
30   mode:c++
31   c-file-style:"stroustrup"
32   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
33   indent-tabs-mode:nil
34   fill-column:99
35   End:
36 */
37 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :