summaryrefslogtreecommitdiffstats
path: root/src/dom/xpathimpl.h
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/xpathimpl.h
parentfix 1466070 (diff)
downloadinkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.tar.gz
inkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.zip
Removed file/folder for ishmal
(bzr r478)
Diffstat (limited to 'src/dom/xpathimpl.h')
-rwxr-xr-xsrc/dom/xpathimpl.h263
1 files changed, 0 insertions, 263 deletions
diff --git a/src/dom/xpathimpl.h b/src/dom/xpathimpl.h
deleted file mode 100755
index c12e78205..000000000
--- a/src/dom/xpathimpl.h
+++ /dev/null
@@ -1,263 +0,0 @@
-#ifndef __XPATHIMPL_H__
-#define __XPATHIMPL_H__
-
-/**
- * Phoebe DOM Implementation.
- *
- * This is a C++ approximation of the W3C DOM model, which follows
- * fairly closely the specifications in the various .idl files, copies of
- * which are provided for reference. Most important is this one:
- *
- * http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html
- *
- * Authors:
- * Bob Jamison
- *
- * Copyright (C) 2005 Bob Jamison
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed 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. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-
-#include "xpath.h"
-#include "domimpl.h"
-
-
-namespace org
-{
-namespace w3c
-{
-namespace dom
-{
-namespace xpath
-{
-
-
-/*#########################################################################
-## XPathEvaluatorImpl
-#########################################################################*/
-
-/**
- *
- */
-class XPathEvaluatorImpl : public XPathEvaluator
-{
-public:
-
- /**
- *
- */
- virtual XPathExpression *createExpression(
- const DOMString &expression,
- const XPathNSResolver *resolver)
- throw (XPathException, dom::DOMException);
-
- /**
- *
- */
- virtual XPathNSResolver *createNSResolver(const Node *nodeResolver);
-
- /**
- *
- */
- virtual XPathResult *evaluate(
- const DOMString &expression,
- const Node *contextNode,
- const XPathNSResolver *resolver,
- const unsigned short type,
- const XPathResult *result)
- throw (XPathException, dom::DOMException);
-
- //###################
- //# Non-API methods
- //###################
-
- /**
- *
- */
- virtual ~XPathEvaluatorImpl() {}
-
-};
-
-/*#########################################################################
-## XPathExpressionImpl
-#########################################################################*/
-
-/**
- *
- */
-class XPathExpressionImpl : public XPathExpression
-{
-public:
-
-
- /**
- *
- */
- virtual XPathResult *evaluate(const Node *contextNode,
- unsigned short type,
- const XPathResult *result)
- throw (XPathException, dom::DOMException);
-
-
- //###################
- //# Non-API methods
- //###################
-
- /**
- *
- */
- virtual ~XPathExpressionImpl() {}
-
-};
-
-/*#########################################################################
-## XPathNSResolverImpl
-#########################################################################*/
-
-/**
- *
- */
-class XPathNSResolverImpl : public XPathNSResolver
-{
-public:
-
- /**
- *
- */
- virtual DOMString lookupNamespaceURI(const DOMString &prefix);
-
-
- //###################
- //# Non-API methods
- //###################
-
- /**
- *
- */
- virtual ~XPathNSResolverImpl() {}
-
-};
-
-/*#########################################################################
-## XPathResultImpl
-#########################################################################*/
-
-/**
- *
- */
-class XPathResultImpl : public XPathResult
-{
-public:
-
- /**
- *
- */
- virtual unsigned short getResultType() throw (XPathException);
-
- /**
- *
- */
- virtual double getNumberValue() throw (XPathException);
-
- /**
- *
- */
- virtual DOMString getStringValue() throw (XPathException);
-
- /**
- *
- */
- virtual bool getBooleanValue() throw (XPathException);
-
- /**
- *
- */
- virtual Node *getSingleNodeValue() throw (XPathException);
-
- /**
- *
- */
- virtual bool getInvalidIteratorState() throw (XPathException);
-
- /**
- *
- */
- virtual unsigned long getSnapshotLength() throw (XPathException);
-
- /**
- *
- */
- virtual Node *iterateNext() throw (XPathException, dom::DOMException);;
-
- /**
- *
- */
- virtual Node *snapshotItem(unsigned long index) throw (XPathException);
-
- //###################
- //# Non-API methods
- //###################
-
- /**
- *
- */
- virtual ~XPathResultImpl() {}
-
-};
-
-/*#########################################################################
-## XPathNamespaceImpl
-#########################################################################*/
-class XPathNamespaceImpl : public XPathNamespace, public NodeImpl
-{
-public:
-
- /**
- *
- */
- virtual Element *getOwnerElement() = 0;
-
-
- //###################
- //# Non-API methods
- //###################
-
- /**
- *
- */
- virtual ~XPathNamespaceImpl() {}
-
-};
-
-
-
-
-
-} //namespace xpath
-} //namespace dom
-} //namespace w3c
-} //namespace org
-
-
-
-
-#endif /* __XPATHIMPL_H__ */
-/*#########################################################################
-## E N D O F F I L E
-#########################################################################*/
-
-
-