##// END OF EJS Templates
- added call method that does a direct call on the ObjectType...
- added call method that does a direct call on the ObjectType - added comments and improved docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@72 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r36:1d1e7c03e848
Show More
PythonQtWrapper_QDomDocumentType.h
28 lines | 934 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QDOMDOCUMENTTYPE_H
#define PYTHONQTWRAPPER_QDOMDOCUMENTTYPE_H
#include <qdom.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qdom.h>
#include <qtextstream.h>
class PythonQtWrapper_QDomDocumentType : public QObject
{ Q_OBJECT
public:
public slots:
QDomDocumentType* new_QDomDocumentType();
QDomDocumentType* new_QDomDocumentType(const QDomDocumentType& x);
void delete_QDomDocumentType(QDomDocumentType* obj) { delete obj; }
QDomNamedNodeMap entities(QDomDocumentType* theWrappedObject) const;
QString systemId(QDomDocumentType* theWrappedObject) const;
QString name(QDomDocumentType* theWrappedObject) const;
QDomNamedNodeMap notations(QDomDocumentType* theWrappedObject) const;
QString publicId(QDomDocumentType* theWrappedObject) const;
QString internalSubset(QDomDocumentType* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QDOMDOCUMENTTYPE_H