source: flair-src/trunk/lib/FlairMeta/src/HdsX8.h@ 147

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

modifs uav vrpn i686

File size: 760 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 HdsX8.h
7 * \brief Class defining a HDS X8 uav
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2016/02/08
10 * \version 4.0
11 */
12
13#ifndef HDSX8_H
14#define HDSX8_H
15
16#include "Uav.h"
17
18namespace flair {
19namespace meta {
20/*! \class HdsX8
21*
22* \brief Class defining a HDS X8 uav
23*/
24class HdsX8 : public Uav {
25public:
26 HdsX8(std::string name,
27 filter::UavMultiplex *multiplex = NULL);
28 ~HdsX8();
29 void StartSensors(void);
30 std::string GetDefaultVrpnAddress(void) const{return "192.168.147.197:3883";}
31
32private:
33};
34} // end namespace meta
35} // end namespace flair
36#endif // HDSX8_H
Note: See TracBrowser for help on using the repository browser.