tools/drawMapTest/main.cpp
author koda
Thu, 03 Nov 2011 00:56:44 +0100
changeset 6265 a6944f94c19f
parent 4425 2314bb0c433d
permissions -rw-r--r--
aaand remove also ipcport from the class interface as well

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

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