An example of how to use the Async::QtApplication class
#include <QPushButton>
int main(int argc, char **argv)
{
QPushButton hello("Hello, Async::QtApplication", 0);
QObject::connect(&hello, SIGNAL(clicked()), &app, SLOT(quit()));
hello.show();
}
The core class for writing asyncronous cpp applications.
An application class for writing GUI applications in Qt.
void exec(void)
Execute the application main loop.
Namespace for the asynchronous programming classes.