Is possible to create an associative array (hash or named arrays) in Qt?
Something like:
int array[2]; array["text1"] = 10; array["text2"] = 20;
QHash<QString, int>
Or if you need lower or upper bounds
QMap<QString, int>