tools/drawMapTest/main.cpp
author nemo
Sun, 20 May 2012 10:55:58 -0400
changeset 7098 f8c453ade379
parent 4425 2314bb0c433d
permissions -rw-r--r--
Minor tweaks to freezer, mostly to simplify current state to laptop

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

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