mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
16 lines
303 B
C++
16 lines
303 B
C++
|
|
#include <qapplication.h>
|
|
#include "MainWindow.h"
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
{
|
|
QApplication a( argc, argv );
|
|
MainWindow mw( NULL, "Main Widget");
|
|
QString title;
|
|
mw.setCaption(title.sprintf("xca - V%s", VER));
|
|
a.setMainWidget( &mw );
|
|
mw.show();
|
|
return a.exec();
|
|
}
|