2011-12-25 21:19:32 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include "mainwindow.h"
|
2011-12-26 21:53:29 +00:00
|
|
|
#include "preview.h"
|
2011-12-25 21:19:32 +00:00
|
|
|
|
|
|
|
#include "../lib_paysages/shared/functions.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow window;
|
|
|
|
|
|
|
|
paysagesInit();
|
|
|
|
|
|
|
|
window.show();
|
|
|
|
|
2011-12-26 21:53:29 +00:00
|
|
|
Preview::startUpdater();
|
|
|
|
|
2011-12-25 21:19:32 +00:00
|
|
|
return app.exec();
|
|
|
|
}
|