ROS2Module.cpp 610 B

12345678910111213141516171819202122
  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. #include <ROS2ModuleInterface.h>
  9. #include <ROS2SystemComponent.h>
  10. namespace ROS2
  11. {
  12. class ROS2Module : public ROS2ModuleInterface
  13. {
  14. public:
  15. AZ_RTTI(ROS2Module, "{e23a1379-787c-481e-ad83-c0e04a3d06fe}", ROS2ModuleInterface);
  16. AZ_CLASS_ALLOCATOR(ROS2Module, AZ::SystemAllocator, 0);
  17. };
  18. } // namespace ROS2
  19. AZ_DECLARE_MODULE_CLASS(Gem_ROS2, ROS2::ROS2Module)