source: flair-src/trunk/lib/FlairMeta/src/SimuPlane.h

Last change on this file was 462, checked in by Sanahuja Guillaume, 2 years ago

remove executable property

File size: 965 bytes
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5/*!
6 * \file SimuPlane.h
7 * \brief Class defining a simulation plane
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2022/01/05
10 * \version 4.0
11 */
12
13#ifndef SIMUPLANE_H
14#define SIMUPLANE_H
15
16#include "Plane.h"
17
18namespace flair {
19 namespace filter {
20 class PlaneMultiplex;
21 }
22
23}
24
25namespace flair {
26namespace meta {
27
28/*! \class SimuPlane
29*
30* \brief Class defining a simulation plane
31*/
32class SimuPlane : public Plane {
33 public:
34 // simu_id: 0 if simulating only one UAV
35 //>0 otherwise
36 SimuPlane(std::string name, uint32_t simu_id,filter::PlaneMultiplex *multiplex);
37 ~SimuPlane();
38 void StartSensors(void);
39 virtual std::string GetType(void) const{return "plane_simu";}
40
41 private:
42
43
44};
45} // end namespace meta
46} // end namespace flair
47#endif // SIMUPLANE_H
Note: See TracBrowser for help on using the repository browser.