RosettaCodeData/Task/User-input-Graphical/C++/user-input-graphical-3.cpp

10 lines
195 B
C++
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#include <QApplication>
#include "task.h"
int main( int argc , char *argv[ ] ) {
QApplication app( argc , argv ) ;
EntryWidget theWidget ;
theWidget.show( ) ;
return app.exec( ) ;
}