##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QCryptographicHash.h
28 lines | 990 B | text/x-c | CLexer
/ generated_cpp / com_trolltech_qt_core / PythonQtWrapper_QCryptographicHash.h
#ifndef PYTHONQTWRAPPER_QCRYPTOGRAPHICHASH_H
#define PYTHONQTWRAPPER_QCRYPTOGRAPHICHASH_H
#include <qcryptographichash.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qbytearray.h>
#include <qcryptographichash.h>
class PythonQtWrapper_QCryptographicHash : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Algorithm )
enum Algorithm{
Md4 = QCryptographicHash::Md4, Md5 = QCryptographicHash::Md5, Sha1 = QCryptographicHash::Sha1};
public slots:
QCryptographicHash* new_QCryptographicHash(QCryptographicHash::Algorithm method);
void delete_QCryptographicHash(QCryptographicHash* obj) { delete obj; }
void addData(QCryptographicHash* theWrappedObject, const QByteArray& data);
void reset(QCryptographicHash* theWrappedObject);
QByteArray static_QCryptographicHash_hash(const QByteArray& data, QCryptographicHash::Algorithm method);
QByteArray result(QCryptographicHash* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QCRYPTOGRAPHICHASH_H