Comment convertir la chaîne QT en chaîne

QString qs;
// do things
std::cout << qs.toStdString() << std::endl;
David Gomari