Is it possible (and more importantly -how-) to redirect an output stream to a QTextBox. So that if I write std::cout << \"test\" anywhere in the applicati
You could reset cout to your own ostream implementation which would emit signals which you hook onto the append slot. You sub-problems/exercises are therefore:
coutcout to your own ostream implementation or one that you can extendemit signals to QTextBoxThese sub-topics are available on SO, as far as I know