RosettaCodeData/Task/GUI-component-interaction/C++/gui-component-interaction-3.cpp

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

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