2D array with dyanamic size
General and Desktop
3
Posts
3
Posters
5.4k
Views
1
Watching
-
Hi,
I have created two dimentional array @QString Data[10][20]@ with constant size..
Now My application is demanding that array size should be dyanamic.What is the best way to implement two dimentional array with dyanamic size.
I am using this array to store the data of tableview.
-
How about Boost multiArray?
or QVector<QStringList>?
std::vector<QStringList>?