26 lines
428 B
C++
26 lines
428 B
C++
/*
|
|
* main.cpp
|
|
*
|
|
* Created on: Jan 21, 2019
|
|
* Author: emanuele
|
|
*
|
|
* main del software roboglue, si occupa solo dell' inizializzazione delle classi finesta e
|
|
* gestore della memoria condivisa
|
|
*
|
|
* 20190121 - Prima Scittura
|
|
*
|
|
*/
|
|
|
|
|
|
#include "init/roboglue_init.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
RoboGlue_INIT w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|