tools/drawMapTest/main.cpp
author unc0rr
Mon, 10 Feb 2014 00:43:03 +0400
changeset 10127 7f29a65aa1e4
parent 4425 2314bb0c433d
permissions -rw-r--r--
It compiles \o/ Doesn't link yet though, need to implement new rtl functions

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

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