summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/xslt.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-05-02 05:26:13 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-05-02 05:26:13 +0000
commit422f555591b3b7f2a0157e74cd95f7095f4c1098 (patch)
treeea4b89d6d1942da38ebc7d2af26eb4cf3387fa59 /src/extension/implementation/xslt.cpp
parentr11466@tres: ted | 2006-04-19 21:27:49 -0700 (diff)
downloadinkscape-422f555591b3b7f2a0157e74cd95f7095f4c1098.tar.gz
inkscape-422f555591b3b7f2a0157e74cd95f7095f4c1098.zip
r11467@tres: ted | 2006-04-19 21:49:02 -0700
Adding in the basic support for having an xslt implementation. (bzr r675)
Diffstat (limited to 'src/extension/implementation/xslt.cpp')
-rw-r--r--src/extension/implementation/xslt.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/extension/implementation/xslt.cpp b/src/extension/implementation/xslt.cpp
new file mode 100644
index 000000000..3301679cc
--- /dev/null
+++ b/src/extension/implementation/xslt.cpp
@@ -0,0 +1,52 @@
+/** \file
+ * Code for handling XSLT extensions.
+ */
+/*
+ * Authors:
+ * Ted Gould <ted@gould.cx>
+ *
+ * Copyright (C) 2006 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include "xslt.h"
+
+
+/* Namespaces */
+namespace Inkscape {
+namespace Extension {
+namespace Implementation {
+
+/* Real functions */
+/**
+ \return A XSLT object
+ \brief This function creates a XSLT object and sets up the
+ variables.
+
+*/
+XSLT::XSLT(void) :
+ Implementation()
+{
+}
+
+
+} /* Implementation */
+} /* module */
+} /* Inkscape */
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :