/* * 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 #include namespace AZ { namespace SceneAPI { namespace SceneBuilder { class ImportContextRegistryComponent : public AZ::SceneAPI::SceneCore::SceneSystemComponent { public: AZ_COMPONENT(ImportContextRegistryComponent, "{9453ddf4-882c-4675-86eb-834f1d1dc5ef}", SceneCore::SceneSystemComponent); ~ImportContextRegistryComponent() override = default; void Activate() override; void Deactivate() override; static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); static void Reflect(ReflectContext* context); private: ImportContextRegistryManager m_sceneSystemRegistry; }; } // namespace SceneCore } // namespace SceneAPI } // namespace AZ