##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QWaitCondition.h
26 lines | 808 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QWAITCONDITION_H
#define PYTHONQTWRAPPER_QWAITCONDITION_H
#include <qwaitcondition.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qmutex.h>
#include <qreadwritelock.h>
#include <qwaitcondition.h>
class PythonQtWrapper_QWaitCondition : public QObject
{ Q_OBJECT
public:
public slots:
QWaitCondition* new_QWaitCondition();
void delete_QWaitCondition(QWaitCondition* obj) { delete obj; }
bool wait(QWaitCondition* theWrappedObject, QReadWriteLock* readWriteLock, unsigned long time = 0xffffffffUL);
void wakeAll(QWaitCondition* theWrappedObject);
void wakeOne(QWaitCondition* theWrappedObject);
bool wait(QWaitCondition* theWrappedObject, QMutex* mutex, unsigned long time = 0xffffffffUL);
};
#endif // PYTHONQTWRAPPER_QWAITCONDITION_H