##// 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:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QSourceLocation.h
32 lines | 1.2 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QSOURCELOCATION_H
#define PYTHONQTWRAPPER_QSOURCELOCATION_H
#include <qsourcelocation.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qsourcelocation.h>
#include <qurl.h>
class PythonQtWrapper_QSourceLocation : public QObject
{ Q_OBJECT
public:
public slots:
QSourceLocation* new_QSourceLocation();
QSourceLocation* new_QSourceLocation(const QSourceLocation& other);
QSourceLocation* new_QSourceLocation(const QUrl& uri, int line = -1, int column = -1);
void delete_QSourceLocation(QSourceLocation* obj) { delete obj; }
bool operator_equal(QSourceLocation* theWrappedObject, const QSourceLocation& other) const;
qint64 line(QSourceLocation* theWrappedObject) const;
QUrl uri(QSourceLocation* theWrappedObject) const;
void setColumn(QSourceLocation* theWrappedObject, qint64 newColumn);
qint64 column(QSourceLocation* theWrappedObject) const;
bool isNull(QSourceLocation* theWrappedObject) const;
void setLine(QSourceLocation* theWrappedObject, qint64 newLine);
void setUri(QSourceLocation* theWrappedObject, const QUrl& newUri);
QString toString(QSourceLocation*);
};
#endif // PYTHONQTWRAPPER_QSOURCELOCATION_H