##// END OF EJS Templates
added methods to qt namespace...
added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r35:b8dce620ba5c
Show More
PythonQtWrapper_QWaitCondition.cpp
34 lines | 926 B | text/x-c | CppLexer
#include "PythonQtWrapper_QWaitCondition.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qmutex.h>
#include <qreadwritelock.h>
#include <qwaitcondition.h>
QWaitCondition* PythonQtWrapper_QWaitCondition::new_QWaitCondition()
{
return new QWaitCondition(); }
bool PythonQtWrapper_QWaitCondition::wait(QWaitCondition* theWrappedObject, QReadWriteLock* readWriteLock, unsigned long time)
{
return theWrappedObject->wait(readWriteLock, time);
}
void PythonQtWrapper_QWaitCondition::wakeAll(QWaitCondition* theWrappedObject)
{
theWrappedObject->wakeAll();
}
void PythonQtWrapper_QWaitCondition::wakeOne(QWaitCondition* theWrappedObject)
{
theWrappedObject->wakeOne();
}
bool PythonQtWrapper_QWaitCondition::wait(QWaitCondition* theWrappedObject, QMutex* mutex, unsigned long time)
{
return theWrappedObject->wait(mutex, time);
}