/* Copyright 2000 - 2001 by Robert Voigt */ #include #include "testwindow.h" int main(int argc, char **argv) { QApplication a(argc, argv); Testwindow testw; a.setMainWidget(&testw); testw.show(); return a.exec(); }