lyx_mirror/src/main.cpp
André Pönitz f1cba8ff64 more latin1..utf8 schanges. all of src/* should be utf8 now
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-14 15:58:50 +00:00

48 lines
914 B
C++

/**
* \file main.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author Jean Marc Lasgouttes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "LyX.h"
#include "support/debug.h"
#include "support/gettext.h"
#include "support/os.h"
#include <iostream>
#ifdef HAVE_IOS
#include <ios>
#endif
using namespace std;
int main(int argc, char * argv[])
{
#ifdef HAVE_IOS
ios_base::sync_with_stdio(false);
#endif
// To avoid ordering of global object problems with some
// stdlibs we do the initialization here, but still as
// early as possible.
lyx::lyxerr.setStream(cerr);
lyx::support::os::init(argc, argv);
// initialize for internationalized version *EK*
lyx::locale_init();
lyx::LyX the_lyx_instance;
return the_lyx_instance.exec(argc, argv);
}