C++ (Qt)QList<QMap<QString, double> > lalala;
C++ (Qt)class MyClass{ typedef QList<QMap<QString, double> > MyList;public: const MyList &list() const { return m_list; } private: MyList m_list;};
C++ (Qt)const double collect[][4] = { { 10, 20, 30, 40 }, { 50, 60, 70, 80 }, ... };