tools/drawMapTest/main.cpp
author nemo
Fri, 12 Aug 2011 13:15:30 -0400
changeset 5552 8694688ccc1c
parent 4425 2314bb0c433d
permissions -rw-r--r--
oops. accidentaly committed test move of voice line (the FIXME still applies though)

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

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