I use a QMap<QString, QAction*> for every action (around 200) in the program, where the key is the action's objectName.
If I was going to have this container be a permanent member of the main window subclass,
is there an obvious choice between QMap, std::map, QHash and std::unordered_map?
The order they are stored doesn't matter.