Last change
on this file since 390 was 388, checked in by Sanahuja Guillaume, 4 years ago |
update headers
|
-
Property svn:eol-style
set to
native
|
File size:
816 bytes
|
Rev | Line | |
---|
[377] | 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 SimuUgv.h
|
---|
[378] | 7 | * \brief Class defining a simulation ugv
|
---|
[377] | 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2020/12/16
|
---|
| 10 | * \version 4.0
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef SIMUUGV_H
|
---|
| 14 | #define SIMUUGV_H
|
---|
| 15 |
|
---|
| 16 | #include "Ugv.h"
|
---|
| 17 |
|
---|
| 18 | namespace flair {
|
---|
| 19 | namespace meta {
|
---|
| 20 |
|
---|
| 21 | /*! \class SimuUgv
|
---|
| 22 | *
|
---|
| 23 | * \brief Class defining a simulation ugv
|
---|
| 24 | */
|
---|
| 25 | class SimuUgv : public Ugv {
|
---|
| 26 | public:
|
---|
| 27 | // simu_id: 0 if simulating only one ugv
|
---|
| 28 | //>0 otherwise
|
---|
| 29 | SimuUgv(std::string name, uint32_t simu_id = 0);
|
---|
| 30 | ~SimuUgv();
|
---|
| 31 | void StartSensors(void);
|
---|
[388] | 32 | std::string GetType(void) const{return "ugv_simu";}
|
---|
[377] | 33 |
|
---|
| 34 | private:
|
---|
| 35 |
|
---|
| 36 | };
|
---|
| 37 | } // end namespace meta
|
---|
| 38 | } // end namespace flair
|
---|
| 39 | #endif // SIMUUGV_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.