##// 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:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QBitArray.h
47 lines | 2.0 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QBITARRAY_H
#define PYTHONQTWRAPPER_QBITARRAY_H
#include <qbitarray.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qbitarray.h>
#include <qdatastream.h>
class PythonQtWrapper_QBitArray : public QObject
{ Q_OBJECT
public:
public slots:
QBitArray* new_QBitArray();
QBitArray* new_QBitArray(const QBitArray& other);
QBitArray* new_QBitArray(int size, bool val = false);
void delete_QBitArray(QBitArray* obj) { delete obj; }
void resize(QBitArray* theWrappedObject, int size);
void clear(QBitArray* theWrappedObject);
QBitArray operator_negate(QBitArray* theWrappedObject) const;
void clearBit(QBitArray* theWrappedObject, int i);
void writeTo(QBitArray* theWrappedObject, QDataStream& arg__1);
bool operator_equal(QBitArray* theWrappedObject, const QBitArray& a) const;
bool at(QBitArray* theWrappedObject, int i) const;
QBitArray* operator_xor_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
void readFrom(QBitArray* theWrappedObject, QDataStream& arg__1);
void truncate(QBitArray* theWrappedObject, int pos);
bool toggleBit(QBitArray* theWrappedObject, int i);
QBitArray* operator_assign(QBitArray* theWrappedObject, const QBitArray& other);
QBitArray* operator_or_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
int size(QBitArray* theWrappedObject) const;
bool fill(QBitArray* theWrappedObject, bool val, int size = -1);
int count(QBitArray* theWrappedObject, bool on) const;
bool isEmpty(QBitArray* theWrappedObject) const;
int count(QBitArray* theWrappedObject) const;
QBitArray* operator_and_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
bool isNull(QBitArray* theWrappedObject) const;
void setBit(QBitArray* theWrappedObject, int i, bool val);
void setBit(QBitArray* theWrappedObject, int i);
bool testBit(QBitArray* theWrappedObject, int i) const;
void fill(QBitArray* theWrappedObject, bool val, int first, int last);
};
#endif // PYTHONQTWRAPPER_QBITARRAY_H