tools/drawMapTest/main.cpp
author unc0rr
Fri, 20 Apr 2012 22:56:56 +0400
changeset 6896 23b38e530967
parent 4425 2314bb0c433d
permissions -rw-r--r--
Move all strings into constants to make them of string255 type

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

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