#include "PythonQtWrapper_QCryptographicHash.h" #include #include #include #include #include #include QCryptographicHash* PythonQtWrapper_QCryptographicHash::new_QCryptographicHash(QCryptographicHash::Algorithm method) { return new QCryptographicHash(method); } void PythonQtWrapper_QCryptographicHash::addData(QCryptographicHash* theWrappedObject, const QByteArray& data) { ( theWrappedObject->addData(data)); } void PythonQtWrapper_QCryptographicHash::reset(QCryptographicHash* theWrappedObject) { ( theWrappedObject->reset()); } QByteArray PythonQtWrapper_QCryptographicHash::static_QCryptographicHash_hash(const QByteArray& data, QCryptographicHash::Algorithm method) { return (QCryptographicHash::hash(data, method)); } QByteArray PythonQtWrapper_QCryptographicHash::result(QCryptographicHash* theWrappedObject) const { return ( theWrappedObject->result()); }