Files
webtester/src/webtester.cxx

10 lines
189 B
C++
Raw Normal View History

2015-02-04 14:01:55 +00:00
#include <testgui.hxx>
#include <QApplication>
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
TestGUI w(0, argc>1?argv[1]:"");
w.show();
return a.exec();
}