##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r24:f543ed746063
r93:7b53f64eae84
Show More
PythonQtWrapper_QIPv6Address.h
32 lines | 737 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QIPV6ADDRESS_H
#define PYTHONQTWRAPPER_QIPV6ADDRESS_H
#include <qhostaddress.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
class PythonQtShell_QIPv6Address : public QIPv6Address
{
public:
PythonQtShell_QIPv6Address():QIPv6Address(),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QIPv6Address : public QObject
{ Q_OBJECT
public:
public slots:
QIPv6Address* new_QIPv6Address();
QIPv6Address* new_QIPv6Address(const QIPv6Address& other) {
PythonQtShell_QIPv6Address* a = new PythonQtShell_QIPv6Address();
*((QIPv6Address*)a) = other;
return a; }
void delete_QIPv6Address(QIPv6Address* obj) { delete obj; }
};
#endif // PYTHONQTWRAPPER_QIPV6ADDRESS_H