mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
15 lines
321 B
C++
15 lines
321 B
C++
|
|
#include <qapplication.h>
|
|
#include "MainWindow.h"
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
{
|
|
QApplication *a = new QApplication( argc, argv );
|
|
MainWindow *mw = new MainWindow( NULL, "Main Widget");
|
|
mw->setCaption("X Certification Authority");
|
|
a->setMainWidget( mw );
|
|
mw->show();
|
|
return a->exec();
|
|
}
|