Async 1.8.0
AsyncQtApplication_demo.cpp

An example of how to use the Async::QtApplication class

#include <QPushButton>
using namespace Async;
int main(int argc, char **argv)
{
QtApplication app(argc, argv);
QPushButton hello("Hello, Async::QtApplication", 0);
QObject::connect(&hello, SIGNAL(clicked()), &app, SLOT(quit()));
hello.show();
app.exec();
}
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.