// %flair:license{ // This file is part of the Flair framework distributed under the // CECILL-C License, Version 1.0. // %flair:license} /*! * \file SimuX8.h * \brief Class defining a simultation x8 uav * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253 * \date 2016/02/08 * \version 4.0 */ #ifndef SIMUX8_H #define SIMUX8_H #include "Uav.h" namespace flair { namespace meta { /*! \class SimuX8 * * \brief Class defining a simultation x8 uav */ class SimuX8 : public Uav { public: // simu_id: 0 if simulating only one UAV //>0 otherwise SimuX8(core::FrameworkManager *parent, std::string uav_name, int simu_id = 0, filter::UavMultiplex *multiplex = NULL); ~SimuX8(); void StartSensors(void); void SetupVRPNAutoIP(std::string name); }; } // end namespace meta } // end namespace flair #endif // SIMUX8_H