RosettaCodeData/Task/User-input-Graphical/C++/user-input-graphical-3.cpp
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
195 B
C++

#include <QApplication>
#include "task.h"
int main( int argc , char *argv[ ] ) {
QApplication app( argc , argv ) ;
EntryWidget theWidget ;
theWidget.show( ) ;
return app.exec( ) ;
}