Async
1.5.0
AsyncQtApplication_demo.cpp
An example of how to use the
Async::QtApplication
class
#include <
AsyncQtApplication.h
>
#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
();
}
Generated on Sun Jan 10 2021 12:03:31 for Async by
1.8.14