tools/drawMapTest/main.cpp
author koda
Sat, 05 May 2012 15:17:16 +0100
changeset 7021 0c75512a8920
parent 4425 2314bb0c433d
permissions -rw-r--r--
adjust the scope of a few uSound variables and functions

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

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