#include #include "PaintWidget.h" int main( int argc, char *argv[] ) { QApplication app( argc, argv ); PaintWidget widget; widget.resize( 300, 300 ); widget.setWindowTitle( "Paint-Test" ); widget.show(); return app.exec(); }