tools/drawMapTest/main.cpp
author unc0rr
Wed, 07 Dec 2011 22:54:39 +0300
changeset 6516 addaeb1b9539
parent 4425 2314bb0c433d
permissions -rw-r--r--
Further progress on dealing with namespaces

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

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