Hi,
What is the most elegant way of creating a Qt-like multidimentional array since I'm having to mess with:
Qt Code:
  1. QList<double> myList[100]
To copy to clipboard, switch view to plain text mode 
and access it with:
Qt Code:
  1. myList[x].at(y)
To copy to clipboard, switch view to plain text mode 

Obviously the x part of the array doesnt benefit from any of Qt's container properties. Any ideas?