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