tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Mar 2018 03:27:18 +0100
changeset 13160 25de976a7b9a
parent 4425 2314bb0c433d
permissions -rw-r--r--
ClimeHome: Show messages when cake is nearby and when reaching home

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

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