When I try to compile the program at the bottom this is what I get.
-> qtprogram.cpp:1:24: fatal error: QApplication: No such file or directory
I got this code from a C++ QT book and I'm compiling this on Linux with this command.
-> g++ -g -Wall "${ARG}" -o "${ARG:: -4}"
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!");
label->show();
return app.exe();
}