2
0

ROS2ModuleInterface.h 730 B

12345678910111213141516171819202122232425262728
  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 <AzCore/Memory/Memory_fwd.h>
  10. #include <AzCore/Module/Module.h>
  11. #include <AzCore/RTTI/RTTIMacros.h>
  12. #include <AzCore/RTTI/TypeInfoSimple.h>
  13. namespace ROS2
  14. {
  15. class ROS2ModuleInterface : public AZ::Module
  16. {
  17. public:
  18. AZ_TYPE_INFO_WITH_NAME_DECL(ROS2ModuleInterface)
  19. AZ_RTTI_NO_TYPE_INFO_DECL()
  20. AZ_CLASS_ALLOCATOR_DECL
  21. ROS2ModuleInterface();
  22. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  23. };
  24. } // namespace ROS2