Как преобразовать строку QT в строку

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