tools/drawMapTest/main.cpp
author unc0rr
Mon, 28 Mar 2011 20:30:15 +0400
changeset 5059 68a5415ca8ea
parent 4425 2314bb0c433d
permissions -rw-r--r--
More creation of sender thread to the reciever thread

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

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