1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/** \file main.cpp
\brief Define the main() for the point entry
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */
#include <QApplication>
#include "Environment.h"
#include "EventDispatcher.h"
/// \brief Define the main() for the point entry
int main(int argc, char *argv[])
{
int returnCode;
QApplication ultracopierApplication(argc, argv);
ultracopierApplication.setApplicationVersion(ULTRACOPIER_VERSION);
ultracopierApplication.setQuitOnLastWindowClosed(false);
#ifdef ULTRACOPIER_DEBUG
DebugEngine::getInstance();
#endif // ULTRACOPIER_DEBUG
//the main code, event loop of Qt and event dispatcher of ultracopier
{
EventDispatcher backgroundRunningInstance;
if(backgroundRunningInstance.shouldBeClosed())
returnCode=0;
else
returnCode=ultracopierApplication.exec();
}
#ifdef ULTRACOPIER_DEBUG
DebugEngine::destroyInstanceAtTheLastCall();
#endif // ULTRACOPIER_DEBUG
return returnCode;
}
|