tools/drawMapTest/main.cpp
author orange.hg@gmail.com
Tue, 28 Jun 2011 20:42:04 +0000
changeset 5327 f3635f25f706
parent 4425 2314bb0c433d
permissions -rw-r--r--
Second passage (second time I correct), -nouvelles phrases de jeu (new sentences) -correction de fautes (correction of mistakes) -reformulations pour plus de compréhension et de cohérence (reformulation for more understanding)

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}