[SOLVED]QList holding another QList
General and Desktop
4
Posts
2
Posters
1.1k
Views
1
Watching
-
wrote on 12 Nov 2012, 08:04 last edited by
Hi everyone,
I need a QList to held another QList. It is like
@QList<QList> list;@Is there any way to do it?
Thanks in advance, -
wrote on 12 Nov 2012, 08:08 last edited by
Yes, you can use QList<QList<yourItem> >
Just don't forget the space between the ">" to make a distinction with the >> operator.
-
wrote on 12 Nov 2012, 08:12 last edited by
Thank you. It never cross my mind that put a space between the operators.
3/4