tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 08 Aug 2018 14:10:32 +0200
changeset 13646 007813b81f1b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Use light gray color for volume change, just like for the auto camera msgs The idea is that these are "local" messages for local changes

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

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