tools/drawMapTest/main.cpp
author Drew Gottlieb
Sat, 08 Dec 2012 15:06:30 +0100
branchflibqtfrontend
changeset 8269 c71721d371dc
parent 4425 2314bb0c433d
permissions -rw-r--r--
GCI2012: Google Issue Login

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

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