~inkscape.dev/inkscape/trunk

« back to all changes in this revision

Viewing changes to src/layer-fns.h

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 */
 
11
 
 
12
#ifndef SEEN_INKSCAPE_LAYER_FNS_H
 
13
#define SEEN_INKSCAPE_LAYER_FNS_H
 
14
 
 
15
class SPObject;
 
16
 
 
17
namespace Inkscape {
 
18
 
 
19
SPObject *create_layer(SPObject *root, SPObject *layer);
 
20
 
 
21
SPObject *next_layer(SPObject *root, SPObject *layer);
 
22
 
 
23
SPObject *previous_layer(SPObject *root, SPObject *layer);
 
24
 
 
25
}
 
26
 
 
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 :