tools/drawMapTest/main.cpp
author unc0rr
Fri, 10 Feb 2012 17:18:49 +0400
changeset 6663 2c4151afad0c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Workaround pointers to not yet defined types

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

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