source: flair-src/trunk/lib/FlairMeta/src/SimuX8.h@ 252

Last change on this file since 252 was 165, checked in by Sanahuja Guillaume, 7 years ago

modifs

File size: 1018 bytes
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[7]5/*!
6 * \file SimuX8.h
[22]7 * \brief Class defining a simulation x8 uav
[7]8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2016/02/08
10 * \version 4.0
11 */
12
13#ifndef SIMUX8_H
14#define SIMUX8_H
15
16#include "Uav.h"
17
[15]18namespace flair {
19namespace meta {
20/*! \class SimuX8
21*
[22]22* \brief Class defining a simulation x8 uav
[15]23*/
24class SimuX8 : public Uav {
[160]25 public:
26 // simu_id: 0 if simulating only one UAV
27 //>0 otherwise
28 SimuX8(std::string name, uint32_t simu_id = 0,std::string options="",
29 filter::UavMultiplex *multiplex = NULL);
30 ~SimuX8();
31 void StartSensors(void);
[165]32 virtual std::string GetType(void) const{return "simu_x8";}
[160]33
34 private:
35 void ReadCameraResolutionOption(std::string options,std::string cameraName,uint16_t &camWidth,uint16_t &camHeight) const;
36
[15]37};
[7]38} // end namespace meta
39} // end namespace flair
40#endif // SIMUX8_H
Note: See TracBrowser for help on using the repository browser.