/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #include "ROS2ServiceBase.h" #include #include #include namespace ROS2SimulationInterfaces { class GetSimulationFeaturesServiceHandler : public ROS2ServiceBase { public: AZStd::string_view GetTypeName() const override { return "GetSimulationFeatures"; } AZStd::string_view GetDefaultName() const override { return "get_simulation_features"; } AZStd::unordered_set GetProvidedFeatures() override; AZStd::optional HandleServiceRequest(const std::shared_ptr header, const Request& request) override; }; } // namespace ROS2SimulationInterfaces