Last change
on this file since 347 was 319, checked in by Sanahuja Guillaume, 5 years ago |
maj ip changement Gildas
|
File size:
858 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 XAir.h
|
---|
7 | * \brief Class defining a xair uav
|
---|
8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
9 | * \date 2016/02/08
|
---|
10 | * \version 4.0
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef XAIR_H
|
---|
14 | #define XAIR_H
|
---|
15 |
|
---|
16 | #include "Uav.h"
|
---|
17 |
|
---|
18 | namespace flair {
|
---|
19 | namespace meta {
|
---|
20 | /*! \class XAir
|
---|
21 | *
|
---|
22 | * \brief Class defining a xair uav
|
---|
23 | */
|
---|
24 | class XAir : public Uav {
|
---|
25 | public:
|
---|
26 | XAir(std::string name,std::string options="",
|
---|
27 | filter::UavMultiplex *multiplex = NULL);
|
---|
28 | ~XAir();
|
---|
29 | void StartSensors(void);
|
---|
30 | std::string GetDefaultVrpnAddress(void) const{return "172.26.213.1:3883";}
|
---|
31 | bool isReadyToFly(void) const;
|
---|
32 | virtual std::string GetType(void) const{return "xair";}
|
---|
33 |
|
---|
34 | private:
|
---|
35 | };
|
---|
36 | } // end namespace meta
|
---|
37 | } // end namespace flair
|
---|
38 | #endif // XAIR_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.