Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
@QHash < int ,QHash> readDevices;@
@QVector<QHash> readDevices;@
Are these statements right?
[edit: solved / $chetankjain]
No. You need to use something like this:
@QHash<int, QHash<QString, QVariant> > someHash;@
and
@QVector<QHash<int, QPoint> > someVector;@
Note the space between the two >. That one is important as some compilers will break without it.
Thank you so much for such a quick answer.