tools/drawMapTest/main.cpp
author unc0rr
Mon, 05 Dec 2011 17:56:49 +0400
changeset 6499 33180b479efa
parent 4425 2314bb0c433d
permissions -rw-r--r--
Start converting into monadic code using Reader monad (will be used to store information about namespace)

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

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