#include "PythonQtWrapper_QReadWriteLock.h" #include #include #include #include #include QReadWriteLock* PythonQtWrapper_QReadWriteLock::new_QReadWriteLock() { return new QReadWriteLock(); } QReadWriteLock* PythonQtWrapper_QReadWriteLock::new_QReadWriteLock(QReadWriteLock::RecursionMode recursionMode) { return new QReadWriteLock(recursionMode); } void PythonQtWrapper_QReadWriteLock::lockForWrite(QReadWriteLock* theWrappedObject) { ( theWrappedObject->lockForWrite()); } bool PythonQtWrapper_QReadWriteLock::tryLockForRead(QReadWriteLock* theWrappedObject) { return ( theWrappedObject->tryLockForRead()); } void PythonQtWrapper_QReadWriteLock::unlock(QReadWriteLock* theWrappedObject) { ( theWrappedObject->unlock()); } bool PythonQtWrapper_QReadWriteLock::tryLockForRead(QReadWriteLock* theWrappedObject, int timeout) { return ( theWrappedObject->tryLockForRead(timeout)); } bool PythonQtWrapper_QReadWriteLock::tryLockForWrite(QReadWriteLock* theWrappedObject) { return ( theWrappedObject->tryLockForWrite()); } void PythonQtWrapper_QReadWriteLock::lockForRead(QReadWriteLock* theWrappedObject) { ( theWrappedObject->lockForRead()); } bool PythonQtWrapper_QReadWriteLock::tryLockForWrite(QReadWriteLock* theWrappedObject, int timeout) { return ( theWrappedObject->tryLockForWrite(timeout)); }