Michaël Lemaire
73f15a44f7
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@205 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
19 lines
305 B
C++
19 lines
305 B
C++
#include <QApplication>
|
|
#include "mainwindow.h"
|
|
#include "preview.h"
|
|
|
|
#include "../lib_paysages/shared/functions.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
paysagesInit();
|
|
|
|
QApplication app(argc, argv);
|
|
MainWindow window;
|
|
|
|
window.show();
|
|
|
|
Preview::startUpdater();
|
|
|
|
return app.exec();
|
|
}
|