I'm new both to QT development, and std libraries.
At this moment I'm trying to create a simple console application, although it's simple, it must be cross platform. It must work with Linux, Windows and android.
While I'm quite used with using std::cout and std::cin to read and write to the console. I'm trying to figure out the same thing with QT libraries.
Is there any way of interacting with the user, using QT library? I cannot use std::cout and std::cin.
I've search for answers at stack overflow, but everything I find is people telling to use qDebug, but that's not what I need, I need the interaction with the user.