What are the pros and cons of using Qt containers (QMap, QVector, etc.) over their STL equivalent?
QMap
QVector
I can see one reason to prefer Qt:
I guess it depends on the way you use Qt. If you use it all over your product, than it probably makes sense to use Qt containers. If you contain it only to (for instance) the UI portion, it may be better to use C++ standard containers.