1 //-----------------------------------------------------------------------------
2 // This file is a part of the Qarte software.
5 // \author Benoit Autheman (benoit@libqanava.org)
7 //-----------------------------------------------------------------------------
11 #include "canMainWindow.h"
15 #include <qapplication.h>
16 #include <qsplashscreen.h>
20 int main( int argc
, char** argv
)
22 // QT gui creation (Needed to allocate plugin qt components and application kernel)
23 QApplication
app( argc
, argv
);
25 // Create main application form
26 MainWindow
mainWindow( &app
);
28 // Display main window and start processing events
30 app
.connect( &app
, SIGNAL( lastWindowClosed( ) ), &app
, SLOT( quit( ) ) );