summaryrefslogtreecommitdiffstats
path: root/src/dom/svglsimpl.cpp
diff options
context:
space:
mode:
authorAaron Spike <aaron@ekips.org>2006-04-12 13:20:54 +0000
committeracspike <acspike@users.sourceforge.net>2006-04-12 13:20:54 +0000
commitddfaffe08d23e4663fe759d67ae33fd67fc9ce5b (patch)
tree234f5425a7ef7058e69dc2ab77f89810e4f3ed91 /src/dom/svglsimpl.cpp
parentfix 1466070 (diff)
downloadinkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.tar.gz
inkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.zip
Removed file/folder for ishmal
(bzr r478)
Diffstat (limited to 'src/dom/svglsimpl.cpp')
-rwxr-xr-xsrc/dom/svglsimpl.cpp90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/dom/svglsimpl.cpp b/src/dom/svglsimpl.cpp
deleted file mode 100755
index 1361fb4c0..000000000
--- a/src/dom/svglsimpl.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (c) 2004 World Wide Web Consortium,
- *
- * (Massachusetts Institute of Technology, European Research Consortium for
- * Informatics and Mathematics, Keio University). All Rights Reserved. This
- * work is distributed under the W3C(r) Software License [1] in the hope that
- * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
- * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
- */
-
-// File: http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/ls.idl
-
-#include "svglsimpl.h"
-
-
-namespace org {
-namespace w3c {
-namespace dom {
-namespace ls {
-
-
-
-
-/*#########################################################################
-## SVGLSParserImpl
-#########################################################################*/
-
-
-/**
- *
- */
-Document *SVGLSParserImpl::parse(const LSInput &inputArg)
- throw(dom::DOMException, LSException)
-{
- Document *doc = LSParserImpl::parse(inputArg);
-
- if (!doc)
- {
- return NULL;
- }
-
- svg::SvgParser svgParser;
-
- Document *svgdoc = svgParser.parse(doc);
-
- delete doc;
-
- return svgdoc;
-}
-
-
-
-
-
-/*#########################################################################
-## SVGLSSerializerImpl
-#########################################################################*/
-
-
-/**
- *
- */
-void SVGLSSerializerImpl::writeNode(const Node *nodeArg)
-{
- LSSerializerImpl::writeNode(nodeArg);
-}
-
-
-
-
-
-
-
-
-
-} //namespace ls
-} //namespace dom
-} //namespace w3c
-} //namespace org
-
-
-
-
-
-/*#########################################################################
-## E N D O F F I L E
-#########################################################################*/
-