tools/drawMapTest/main.cpp
author unc0rr
Thu, 18 Apr 2013 21:25:38 +0400
changeset 8920 caa614af152d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Store colors in human-readable form

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

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