tools/drawMapTest/main.cpp
author Mitchell Kember <mk12360@gmail.com>
Tue, 04 Dec 2012 16:37:02 -0500
changeset 8226 67f07ff5b593
parent 4425 2314bb0c433d
permissions -rw-r--r--
Removed redundant "enable"s on checkboxes and variable names.

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

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