Jak przekonwertować ciąg QT na ciąg

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