Code

r11467@tres: ted | 2006-04-19 21:49:02 -0700
[inkscape.git] / src / extension / implementation / xslt.h
1 /*
2  * Code for handling XSLT extensions
3  *
4  * Authors:
5  *   Ted Gould <ted@gould.cx>
6  *
7  * Copyright (C) 2006 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef __INKSCAPE_EXTENSION_IMPEMENTATION_XSLT_H__
13 #define __INKSCAPE_EXTENSION_IMPEMENTATION_XSLT_H__
15 #include "implementation.h"
17 namespace Inkscape {
18 namespace XML {
19 class Node;
20 }
21 }
24 namespace Inkscape {
25 namespace Extension {
26 namespace Implementation {
28 class XSLT : public Implementation {
29 private:
31 public:
32     XSLT (void);
34 };
36 }  /* Inkscape  */
37 }  /* Extension  */
38 }  /* Implementation  */
39 #endif /* __INKSCAPE_EXTENSION_IMPEMENTATION_XSLT_H__ */
41 /*
42   Local Variables:
43   mode:c++
44   c-file-style:"stroustrup"
45   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
46   indent-tabs-mode:nil
47   fill-column:99
48   End:
49 */
50 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :