ROS2RobotImporterSystemComponent.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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/Component/Component.h>
  10. namespace ROS2
  11. {
  12. //! A Component for importing robot definition from standard formats such as URDF.
  13. //! Sometimes, user decisions will be involved in the process.
  14. class ROS2RobotImporterSystemComponent : public AZ::Component
  15. {
  16. public:
  17. AZ_COMPONENT(ROS2RobotImporterSystemComponent, "{f2566021-450a-4eae-896f-b268492a58eb}");
  18. static void Reflect(AZ::ReflectContext* context);
  19. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  20. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  21. ROS2RobotImporterSystemComponent() = default;
  22. virtual ~ROS2RobotImporterSystemComponent() = default;
  23. protected:
  24. //////////////////////////////////////////////////////////////////////////
  25. // Component overrides
  26. void Init() override{};
  27. void Activate() override{};
  28. void Deactivate() override{};
  29. //////////////////////////////////////////////////////////////////////////
  30. };
  31. } // namespace ROS2