##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r96:3170eb771a99
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