2010-03-10 23:36:47 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file uavobjectsinit.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
|
2010-03-27 04:22:43 +01:00
|
|
|
* @brief Initialize all objects.
|
|
|
|
* Automatically generated by the UAVObjectGenerator.
|
|
|
|
*
|
|
|
|
* @note This is an automatically generated file.
|
|
|
|
* DO NOT modify manually.
|
2010-03-10 23:36:47 +01:00
|
|
|
* @see The GNU Public License (GPL) Version 3
|
2010-03-15 23:09:47 +01:00
|
|
|
* @defgroup uavobjects_plugin
|
2010-03-10 23:36:47 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
2010-03-15 02:50:52 +01:00
|
|
|
#include "uavobjectsinit.h"
|
2010-04-02 05:17:51 +02:00
|
|
|
#include "exampleobject1.h"
|
|
|
|
#include "exampleobject2.h"
|
2010-03-29 00:22:19 +02:00
|
|
|
#include "examplesettings.h"
|
2010-04-18 00:17:25 +02:00
|
|
|
#include "flighttelemetrystats.h"
|
|
|
|
#include "gcstelemetrystats.h"
|
2010-04-17 09:38:28 +02:00
|
|
|
#include "gpsobject.h"
|
2010-04-30 04:27:37 +02:00
|
|
|
#include "objectpersistence.h"
|
2010-04-18 04:14:42 +02:00
|
|
|
#include "systemalarms.h"
|
|
|
|
#include "systemstats.h"
|
2010-05-08 04:43:26 +02:00
|
|
|
#include "telemetrysettings.h"
|
2010-03-27 04:22:43 +01:00
|
|
|
|
2010-03-15 02:50:52 +01:00
|
|
|
|
|
|
|
/**
|
2010-03-27 04:22:43 +01:00
|
|
|
* Function used to initialize the first instance of each object.
|
|
|
|
* This file is automatically updated by the UAVObjectGenerator.
|
2010-03-15 02:50:52 +01:00
|
|
|
*/
|
|
|
|
void UAVObjectsInitialize(UAVObjectManager* objMngr)
|
|
|
|
{
|
2010-04-02 05:17:51 +02:00
|
|
|
objMngr->registerObject( new ExampleObject1() );
|
|
|
|
objMngr->registerObject( new ExampleObject2() );
|
2010-03-29 00:22:19 +02:00
|
|
|
objMngr->registerObject( new ExampleSettings() );
|
2010-04-18 00:17:25 +02:00
|
|
|
objMngr->registerObject( new FlightTelemetryStats() );
|
|
|
|
objMngr->registerObject( new GCSTelemetryStats() );
|
2010-04-17 09:38:28 +02:00
|
|
|
objMngr->registerObject( new GpsObject() );
|
2010-04-30 04:27:37 +02:00
|
|
|
objMngr->registerObject( new ObjectPersistence() );
|
2010-04-18 04:14:42 +02:00
|
|
|
objMngr->registerObject( new SystemAlarms() );
|
|
|
|
objMngr->registerObject( new SystemStats() );
|
2010-05-08 04:43:26 +02:00
|
|
|
objMngr->registerObject( new TelemetrySettings() );
|
2010-03-29 00:22:19 +02:00
|
|
|
|
2010-03-15 02:50:52 +01:00
|
|
|
}
|