Ok so assuming it isn't a question that's going to be answered I guess the alternative is can someone show me how to use the foreach statement with multidimensional QVectors?
Cheers
Oz
Ok so assuming it isn't a question that's going to be answered I guess the alternative is can someone show me how to use the foreach statement with multidimensional QVectors?
Cheers
Oz
Qt Code:
QVector<QVector<QVector<int>>> vvv; foreach (QVector<QVector<int>> vv, vvv) foreach (QVector<int> v, vv) foreach (int i, v) std::cout << i;To copy to clipboard, switch view to plain text mode
OzQTNoob (23rd February 2012)
Bookmarks