qgit.cpp

Go to the documentation of this file.
00001 /*
00002         Author: Marco Costalba (C) 2005-2006
00003 
00004         Copyright: See COPYING file that comes with this distribution
00005 
00006 */
00007 #include <qapplication.h>
00008 #include "mainimpl.h"
00009 
00010 int main(int argc, char* argv[]) {
00011 
00012         QApplication app(argc, argv);
00013 
00014         MainImpl* mainWin = new MainImpl;
00015         mainWin->show();
00016         QObject::connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
00017         return app.exec();
00018 }

Generated on Fri Dec 7 21:57:38 2007 for QGit by  doxygen 1.5.3