tools/drawMapTest/main.cpp
author nemo
Sun, 11 Sep 2011 14:46:04 -0400
changeset 5866 9017a0ff4201
parent 4425 2314bb0c433d
permissions -rw-r--r--
aaaallways, I want to beeee with you, and make belieeeeve with you

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

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