You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running build.sh , an error is thrown because 'msr::airlib::RealMultirotorConnector' is an abstract class. Indeed, the following two virtual pure methods are not overriden :
virtual int getSegmentationObjectID(const std::string& mesh_name) = 0;
in the file AirSim/AirLib/include/vehicles/multirotor/controllers/RealMultirotorConnector.hpp and it inherits from AirSim/AirLib/include/controllers/VehicleConnectorBase.hpp
I succeed in building AirSim, by simply defining these two methods in RealMultirotorConnector.hpp with an empty body , but I do not know if this the expected behavior.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
When running build.sh , an error is thrown because 'msr::airlib::RealMultirotorConnector' is an abstract class. Indeed, the following two virtual pure methods are not overriden :
virtual bool setSegmentationObjectID(const std::string& mesh_name, int object_id,
bool is_name_regex = false) = 0;
virtual int getSegmentationObjectID(const std::string& mesh_name) = 0;
in the file AirSim/AirLib/include/vehicles/multirotor/controllers/RealMultirotorConnector.hpp and it inherits from AirSim/AirLib/include/controllers/VehicleConnectorBase.hpp
I succeed in building AirSim, by simply defining these two methods in RealMultirotorConnector.hpp with an empty body , but I do not know if this the expected behavior.
The text was updated successfully, but these errors were encountered: