I\'d like to store in QHash elements that inherits from one class. So I\'ve got: class ImageInterface {
I get this error when I try to convert a QList to a QSet. QList<double> x_pts; x_pts << 4.1;
I am using a serializer in QT C++. It looks ok but valgrind (memcheck tool) is reporting a memory leak on this function.
I have a levelObjects object that\'s a QList of QVariants of QMaps: QList< QVariant > levelObjects;
I have a QGraphicsScene on which I would like to draw some special curves. For that I made a class in which I define these special curves as a new QGraphicsItem:
A QList<T *> can\'t easily be const-correct. Consider the function void f(QList<T *> list)
I use Qt and C++, I have a list(QList<int>) list<<1<<3<<4<<5<<9<<22<<32<<45
I\'m currently working on Qt application on Symbian platform. Applicat开发者_如何学Goion has an sqlite database and initial data is populated from txt files.
I\'m making a QList of a custom class called ControlIcon. I create the ControlIcons, and load them up with member variables, and then add them to the list开发者_如何学运维. Here\'s the append code:
i\'m trying to send a QList as a parameter to another class but for some reason i lose all it\'s content ...