#include <QVector>typedef std::pair <int,int> ii ;typedef std::vector <int> vectorT;
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);