tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Mon, 23 Jul 2012 19:15:59 +0300 (2012-07-23)
changeset 7263 644eabbc9218
parent 4425 2314bb0c433d
permissions -rw-r--r--
Added a new function: AddNewEvent, which only adds an event to the list if it doesn't already exist. Kept the old one as it might me useful to be able to add an event more than once.
#include <QtGui/QApplication>
#include "mainwindow.h"

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