YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#include "mainwindow.h"
7#include <QApplication>
8
9int main(int argc, char *argv[])
10{
11 QApplication a(argc, argv);
12 MainWindow w;
13 w.show();
14
15 return a.exec();
16}
MainWindow class.
Definition display.h:22
int main(int argc, char *argv[])
Definition main.cpp:385