tools/drawMapTest/main.cpp
author unc0rr
Fri, 11 May 2012 21:10:58 +0400
changeset 7054 7e8fb07ef91c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Function to compare string to char ftw

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

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