KHTML
parsedstatement.h
Go to the documentation of this file.
00001 /* 00002 * parsedstatement.h - Copyright 2005 Frerich Raabe <raabe@kde.org> 00003 * 00004 * Redistribution and use in source and binary forms, with or without 00005 * modification, are permitted provided that the following conditions 00006 * are met: 00007 * 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 00014 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 00015 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00016 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 00017 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 00018 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 00019 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00020 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00021 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00022 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00023 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00024 */ 00025 #ifndef PARSEDSTATEMENT_H 00026 #define PARSEDSTATEMENT_H 00027 00028 #include "util.h" 00029 00030 namespace DOM { 00031 class NodeImpl; 00032 class DOMString; 00033 } 00034 00035 namespace khtml { 00036 00037 class XPathNSResolverImpl; 00038 00039 namespace XPath { 00040 00041 class Expression; 00042 class Value; 00043 00044 class ParsedStatement 00045 { 00046 public: 00047 ParsedStatement( const DOM::DOMString &statement, khtml::XPathNSResolverImpl* res ); 00048 ~ParsedStatement(); 00049 void optimize(); 00050 00051 QString dump() const; 00052 00053 Value evaluate( DOM::NodeImpl *context, 00054 int& ec) const; 00055 00056 // Any exception issued during parsing, or 0 00057 int exceptionCode() { return m_ec; } 00058 00059 private: 00060 void parse( const DOM::DOMString &statement ); 00061 00062 SharedPtr<khtml::XPathNSResolverImpl> m_res; 00063 Expression *m_expr; 00064 int m_ec; 00065 }; 00066 00067 } // namespace XPath 00068 00069 } // namespace khtml 00070 00071 00072 #endif // PARSEDSTATEMENT_H 00073 // kate: indent-width 4; replace-tabs off; tab-width 4; space-indent off; 00074
KDE 4.6 API Reference