tools/drawMapTest/main.cpp
author koda
Wed, 21 Sep 2011 12:57:30 +0200
changeset 5978 bc70c6c94912
parent 4425 2314bb0c433d
permissions -rw-r--r--
another round of retina display images

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

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