ROS2ModelPluginHooks.h 999 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <ROS2RobotImporter/SDFormatModelPluginImporterHook.h>
  10. namespace ROS2RobotImporter::SDFormat::ROS2ModelPluginHooks
  11. {
  12. //! Get a mapping of SDFormat ackermann_drive plugin into O3DE components.
  13. ModelPluginImporterHook ROS2AckermannModel();
  14. //! Get a mapping of SDFormat skid_steer_drive and diff_drive plugins into O3DE components.
  15. ModelPluginImporterHook ROS2SkidSteeringModel();
  16. //! Get a mapping of SDFormat joint_pose_trajectory plugin into O3DE components.
  17. ModelPluginImporterHook ROS2JointPoseTrajectoryModel();
  18. //! Get a mapping of SDFormat joint_state_publisher plugin into O3DE components.
  19. ModelPluginImporterHook ROS2JointStatePublisherModel();
  20. } // namespace ROS2RobotImporter::SDFormat::ROS2ModelPluginHooks