##// END OF EJS Templates
added initial generated wrappers for Qt 4.4.3...
added initial generated wrappers for Qt 4.4.3 git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@49 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r13:d46b01f7163a
Show More
PythonQtWrapper_QDomNode.cpp
334 lines | 8.9 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QDomNode.h"
#include <QVariant>
#include <qdom.h>
#include <qtextstream.h>
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode()
{
return new QDomNode(); }
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode(const QDomNode& arg__1)
{
return new QDomNode(arg__1); }
QDomNode PythonQtWrapper_QDomNode::appendChild(QDomNode* theWrappedObject, const QDomNode& newChild)
{
return theWrappedObject->appendChild(newChild);
}
QDomNodeList PythonQtWrapper_QDomNode::childNodes(QDomNode* theWrappedObject) const
{
return theWrappedObject->childNodes();
}
void PythonQtWrapper_QDomNode::clear(QDomNode* theWrappedObject)
{
theWrappedObject->clear();
}
QDomNode PythonQtWrapper_QDomNode::cloneNode(QDomNode* theWrappedObject, bool deep) const
{
return theWrappedObject->cloneNode(deep);
}
int PythonQtWrapper_QDomNode::columnNumber(QDomNode* theWrappedObject) const
{
return theWrappedObject->columnNumber();
}
QDomNode PythonQtWrapper_QDomNode::firstChild(QDomNode* theWrappedObject) const
{
return theWrappedObject->firstChild();
}
QDomElement PythonQtWrapper_QDomNode::firstChildElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return theWrappedObject->firstChildElement(tagName);
}
bool PythonQtWrapper_QDomNode::hasAttributes(QDomNode* theWrappedObject) const
{
return theWrappedObject->hasAttributes();
}
bool PythonQtWrapper_QDomNode::hasChildNodes(QDomNode* theWrappedObject) const
{
return theWrappedObject->hasChildNodes();
}
QDomNode PythonQtWrapper_QDomNode::insertAfter(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
{
return theWrappedObject->insertAfter(newChild, refChild);
}
QDomNode PythonQtWrapper_QDomNode::insertBefore(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
{
return theWrappedObject->insertBefore(newChild, refChild);
}
bool PythonQtWrapper_QDomNode::isAttr(QDomNode* theWrappedObject) const
{
return theWrappedObject->isAttr();
}
bool PythonQtWrapper_QDomNode::isCDATASection(QDomNode* theWrappedObject) const
{
return theWrappedObject->isCDATASection();
}
bool PythonQtWrapper_QDomNode::isCharacterData(QDomNode* theWrappedObject) const
{
return theWrappedObject->isCharacterData();
}
bool PythonQtWrapper_QDomNode::isComment(QDomNode* theWrappedObject) const
{
return theWrappedObject->isComment();
}
bool PythonQtWrapper_QDomNode::isDocument(QDomNode* theWrappedObject) const
{
return theWrappedObject->isDocument();
}
bool PythonQtWrapper_QDomNode::isDocumentFragment(QDomNode* theWrappedObject) const
{
return theWrappedObject->isDocumentFragment();
}
bool PythonQtWrapper_QDomNode::isDocumentType(QDomNode* theWrappedObject) const
{
return theWrappedObject->isDocumentType();
}
bool PythonQtWrapper_QDomNode::isElement(QDomNode* theWrappedObject) const
{
return theWrappedObject->isElement();
}
bool PythonQtWrapper_QDomNode::isEntity(QDomNode* theWrappedObject) const
{
return theWrappedObject->isEntity();
}
bool PythonQtWrapper_QDomNode::isEntityReference(QDomNode* theWrappedObject) const
{
return theWrappedObject->isEntityReference();
}
bool PythonQtWrapper_QDomNode::isNotation(QDomNode* theWrappedObject) const
{
return theWrappedObject->isNotation();
}
bool PythonQtWrapper_QDomNode::isNull(QDomNode* theWrappedObject) const
{
return theWrappedObject->isNull();
}
bool PythonQtWrapper_QDomNode::isProcessingInstruction(QDomNode* theWrappedObject) const
{
return theWrappedObject->isProcessingInstruction();
}
bool PythonQtWrapper_QDomNode::isSupported(QDomNode* theWrappedObject, const QString& feature, const QString& version) const
{
return theWrappedObject->isSupported(feature, version);
}
bool PythonQtWrapper_QDomNode::isText(QDomNode* theWrappedObject) const
{
return theWrappedObject->isText();
}
QDomNode PythonQtWrapper_QDomNode::lastChild(QDomNode* theWrappedObject) const
{
return theWrappedObject->lastChild();
}
QDomElement PythonQtWrapper_QDomNode::lastChildElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return theWrappedObject->lastChildElement(tagName);
}
int PythonQtWrapper_QDomNode::lineNumber(QDomNode* theWrappedObject) const
{
return theWrappedObject->lineNumber();
}
QString PythonQtWrapper_QDomNode::localName(QDomNode* theWrappedObject) const
{
return theWrappedObject->localName();
}
QDomNode PythonQtWrapper_QDomNode::namedItem(QDomNode* theWrappedObject, const QString& name) const
{
return theWrappedObject->namedItem(name);
}
QString PythonQtWrapper_QDomNode::namespaceURI(QDomNode* theWrappedObject) const
{
return theWrappedObject->namespaceURI();
}
QDomNode PythonQtWrapper_QDomNode::nextSibling(QDomNode* theWrappedObject) const
{
return theWrappedObject->nextSibling();
}
QDomElement PythonQtWrapper_QDomNode::nextSiblingElement(QDomNode* theWrappedObject, const QString& taName) const
{
return theWrappedObject->nextSiblingElement(taName);
}
QString PythonQtWrapper_QDomNode::nodeName(QDomNode* theWrappedObject) const
{
return theWrappedObject->nodeName();
}
QDomNode::NodeType PythonQtWrapper_QDomNode::nodeType(QDomNode* theWrappedObject) const
{
return theWrappedObject->nodeType();
}
QString PythonQtWrapper_QDomNode::nodeValue(QDomNode* theWrappedObject) const
{
return theWrappedObject->nodeValue();
}
void PythonQtWrapper_QDomNode::normalize(QDomNode* theWrappedObject)
{
theWrappedObject->normalize();
}
void PythonQtWrapper_QDomNode::writeTo(QDomNode* theWrappedObject, QTextStream& arg__1)
{
arg__1 << *theWrappedObject;
}
bool PythonQtWrapper_QDomNode::operator_equal(QDomNode* theWrappedObject, const QDomNode& arg__1) const
{
return *theWrappedObject == arg__1;
}
QDomDocument PythonQtWrapper_QDomNode::ownerDocument(QDomNode* theWrappedObject) const
{
return theWrappedObject->ownerDocument();
}
QDomNode PythonQtWrapper_QDomNode::parentNode(QDomNode* theWrappedObject) const
{
return theWrappedObject->parentNode();
}
QString PythonQtWrapper_QDomNode::prefix(QDomNode* theWrappedObject) const
{
return theWrappedObject->prefix();
}
QDomNode PythonQtWrapper_QDomNode::previousSibling(QDomNode* theWrappedObject) const
{
return theWrappedObject->previousSibling();
}
QDomElement PythonQtWrapper_QDomNode::previousSiblingElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return theWrappedObject->previousSiblingElement(tagName);
}
QDomNode PythonQtWrapper_QDomNode::removeChild(QDomNode* theWrappedObject, const QDomNode& oldChild)
{
return theWrappedObject->removeChild(oldChild);
}
QDomNode PythonQtWrapper_QDomNode::replaceChild(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& oldChild)
{
return theWrappedObject->replaceChild(newChild, oldChild);
}
void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2) const
{
theWrappedObject->save(arg__1, arg__2);
}
void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2, QDomNode::EncodingPolicy arg__3) const
{
theWrappedObject->save(arg__1, arg__2, arg__3);
}
void PythonQtWrapper_QDomNode::setNodeValue(QDomNode* theWrappedObject, const QString& arg__1)
{
theWrappedObject->setNodeValue(arg__1);
}
void PythonQtWrapper_QDomNode::setPrefix(QDomNode* theWrappedObject, const QString& pre)
{
theWrappedObject->setPrefix(pre);
}
QDomAttr PythonQtWrapper_QDomNode::toAttr(QDomNode* theWrappedObject) const
{
return theWrappedObject->toAttr();
}
QDomCDATASection PythonQtWrapper_QDomNode::toCDATASection(QDomNode* theWrappedObject) const
{
return theWrappedObject->toCDATASection();
}
QDomCharacterData PythonQtWrapper_QDomNode::toCharacterData(QDomNode* theWrappedObject) const
{
return theWrappedObject->toCharacterData();
}
QDomComment PythonQtWrapper_QDomNode::toComment(QDomNode* theWrappedObject) const
{
return theWrappedObject->toComment();
}
QDomDocument PythonQtWrapper_QDomNode::toDocument(QDomNode* theWrappedObject) const
{
return theWrappedObject->toDocument();
}
QDomDocumentFragment PythonQtWrapper_QDomNode::toDocumentFragment(QDomNode* theWrappedObject) const
{
return theWrappedObject->toDocumentFragment();
}
QDomDocumentType PythonQtWrapper_QDomNode::toDocumentType(QDomNode* theWrappedObject) const
{
return theWrappedObject->toDocumentType();
}
QDomElement PythonQtWrapper_QDomNode::toElement(QDomNode* theWrappedObject) const
{
return theWrappedObject->toElement();
}
QDomEntity PythonQtWrapper_QDomNode::toEntity(QDomNode* theWrappedObject) const
{
return theWrappedObject->toEntity();
}
QDomEntityReference PythonQtWrapper_QDomNode::toEntityReference(QDomNode* theWrappedObject) const
{
return theWrappedObject->toEntityReference();
}
QDomNotation PythonQtWrapper_QDomNode::toNotation(QDomNode* theWrappedObject) const
{
return theWrappedObject->toNotation();
}
QDomProcessingInstruction PythonQtWrapper_QDomNode::toProcessingInstruction(QDomNode* theWrappedObject) const
{
return theWrappedObject->toProcessingInstruction();
}
QDomText PythonQtWrapper_QDomNode::toText(QDomNode* theWrappedObject) const
{
return theWrappedObject->toText();
}