An example of how to use the Async::QtApplication class
#include <QPushButton>
using namespace Async;
int main(int argc, char **argv)
{
QPushButton hello("Hello, Async::QtApplication", 0);
QObject::connect(&hello, SIGNAL(clicked()), &app, SLOT(quit()));
hello.show();
}