Code

r11467@tres: ted | 2006-04-19 21:49:02 -0700
[inkscape.git] / src / extension / implementation / xslt.cpp
1 /** \file
2  * Code for handling XSLT extensions.
3  */
4 /*
5  * Authors:
6  *   Ted Gould <ted@gould.cx>
7  *
8  * Copyright (C) 2006 Authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
17 #include "xslt.h"
20 /* Namespaces */
21 namespace Inkscape {
22 namespace Extension {
23 namespace Implementation {
25 /* Real functions */
26 /**
27     \return    A XSLT object
28     \brief     This function creates a XSLT object and sets up the
29                variables.
31 */
32 XSLT::XSLT(void) :
33     Implementation()
34 {
35 }
38 }  /* Implementation  */
39 }  /* module  */
40 }  /* Inkscape  */
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :