tools/drawMapTest/main.cpp
author unc0rr
Mon, 05 Dec 2011 23:04:10 +0300
changeset 6500 c9eaf1dd16c8
parent 4425 2314bb0c433d
permissions -rw-r--r--
Let .hs be native eol format too

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

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