tools/drawMapTest/main.cpp
author koda
Wed, 27 Jul 2011 10:37:05 +0200
changeset 5462 c8161bebcbd5
parent 4425 2314bb0c433d
permissions -rw-r--r--
trying to clean up the .hgtags mess

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

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