##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r96:3170eb771a99
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