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