00001 #include <spl/xml/xpath/private/XPathOperator.h> 00002 00003 XPathOperator::XPathOperator() 00004 { 00005 } 00006 00007 XPathOperator::XPathOperator(const XPathOperator& o) 00008 { 00009 } 00010 00011 XPathOperator::~XPathOperator() 00012 { 00013 } 00014 00015 XPathOperator& XPathOperator::operator =(const XPathOperator& xp) 00016 { 00017 return *this; 00018 } 00019 00020 bool XPathOperator::IsMatch(XmlNode& context) 00021 { 00022 return false; 00023 } 00024 00025 XmlNodeListPtr XPathOperator::NextContext(XmlNodePtr context) 00026 { 00027 return XmlNodeListPtr(); 00028 } 00029 00030 #if defined(DEBUG) || defined(_DEBUG) 00031 void XPathOperator::CheckMem() const 00032 { 00033 } 00034 00035 void XPathOperator::ValidateMem() const 00036 { 00037 } 00038 #endif