tools/drawMapTest/main.cpp
author Henek
Sat, 26 Nov 2011 16:47:36 +0100
changeset 6438 b3a8718ac2a0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Updated the Tracker to handle hog hiding and restoring.

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

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