14 lines
204 B
C++
14 lines
204 B
C++
|
#include <qapplication.h>
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
QApplication a( argc, argv );
|
||
|
|
||
|
MainWindow w;
|
||
|
w.resize( 800, 600 );
|
||
|
w.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|