##// END OF EJS Templates
renamed guards...
renamed guards git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@53 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r17:4a5dbf143fd4
Show More
PythonQtWrapper_QCryptographicHash.cpp
30 lines | 890 B | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_core / PythonQtWrapper_QCryptographicHash.cpp
#include "PythonQtWrapper_QCryptographicHash.h"
#include <QVariant>
#include <qbytearray.h>
#include <qcryptographichash.h>
QCryptographicHash* PythonQtWrapper_QCryptographicHash::new_QCryptographicHash(QCryptographicHash::Algorithm method)
{
return new QCryptographicHash(method); }
void PythonQtWrapper_QCryptographicHash::addData(QCryptographicHash* theWrappedObject, const QByteArray& data)
{
theWrappedObject->addData(data);
}
QByteArray PythonQtWrapper_QCryptographicHash::static_QCryptographicHash_hash(const QByteArray& data, QCryptographicHash::Algorithm method)
{
return QCryptographicHash::hash(data, method);
}
void PythonQtWrapper_QCryptographicHash::reset(QCryptographicHash* theWrappedObject)
{
theWrappedObject->reset();
}
QByteArray PythonQtWrapper_QCryptographicHash::result(QCryptographicHash* theWrappedObject) const
{
return theWrappedObject->result();
}