#include #include #include "test.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); Test * test = new Test(); int rv = app.exec(); delete test; return rv; }