#include "PythonQtWrapper_QSignalMapper.h" #include #include #include #include #include #include QSignalMapper* PythonQtWrapper_QSignalMapper::new_QSignalMapper(QObject* parent) { return new QSignalMapper(parent); } QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, QObject* object) const { return theWrappedObject->mapping(object); } QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, const QString& text) const { return theWrappedObject->mapping(text); } QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, int id) const { return theWrappedObject->mapping(id); } void PythonQtWrapper_QSignalMapper::removeMappings(QSignalMapper* theWrappedObject, QObject* sender) { theWrappedObject->removeMappings(sender); } void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, QObject* object) { theWrappedObject->setMapping(sender, object); } void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, const QString& text) { theWrappedObject->setMapping(sender, text); } void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, int id) { theWrappedObject->setMapping(sender, id); }