Ну так вы определитесь, что хотите использовать, STL или Qt структуры данных.
Пишите на Qt, так и используйте инструменты Qt.
C++ (Qt)
QList<QPair<int, int> >
C++ (Qt)
typedef QPair<int, int> IntPair;
typedef QList<IntPair> IntPairList;
...
IntPair pair(10, 20);
IntPairList pairList;
pairList.append(pair);