como converter string QT para string

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