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

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QMutex.cpp
32 lines | 718 B | text/x-c | CppLexer
#include "PythonQtWrapper_QMutex.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qmutex.h>
QMutex* PythonQtWrapper_QMutex::new_QMutex(QMutex::RecursionMode mode)
{
return new QMutex(mode); }
bool PythonQtWrapper_QMutex::tryLock(QMutex* theWrappedObject, int timeout)
{
return ( theWrappedObject->tryLock(timeout));
}
void PythonQtWrapper_QMutex::unlock(QMutex* theWrappedObject)
{
( theWrappedObject->unlock());
}
bool PythonQtWrapper_QMutex::tryLock(QMutex* theWrappedObject)
{
return ( theWrappedObject->tryLock());
}
void PythonQtWrapper_QMutex::lock(QMutex* theWrappedObject)
{
( theWrappedObject->lock());
}