Qt C++

#include 
#include 
#include 
int main()
{
  QStringList list;
  list << "one" << "two" << "three";
  QVector vect(list.size());
  qCopy(list.begin(), list.end(), vect.begin());
  qDebug() << vect; // output: ( "one", "two", "three" )
  return 0;
}