tools/drawMapTest/main.cpp
author unc0rr
Wed, 12 Feb 2014 23:46:24 +0400
changeset 10134 81d733899e06
parent 4425 2314bb0c433d
permissions -rw-r--r--
Use strchr instead of strstr with specially constructed string255 struct (not tested)

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

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