tools/drawMapTest/main.cpp
author sheepluva
Thu, 06 Feb 2014 21:07:50 +0100
changeset 10114 68a72af636c3
parent 4425 2314bb0c433d
permissions -rw-r--r--
get rid of hwpow. ~so long and thanks for all the wtfish~

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

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