| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*
- * 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
- *
- */
- #include "ArchiveSystemComponent.h"
- #include <Archive/ArchiveTypeIds.h>
- #include <AzCore/Serialization/SerializeContext.h>
- namespace Archive
- {
- AZ_COMPONENT_IMPL(ArchiveSystemComponent, "ArchiveSystemComponent",
- ArchiveSystemComponentTypeId);
- void ArchiveSystemComponent::Reflect(AZ::ReflectContext* context)
- {
- if (auto serializeContext = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serializeContext->Class<ArchiveSystemComponent, AZ::Component>()
- ->Version(0)
- ;
- }
- }
- void ArchiveSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided)
- {
- provided.push_back(AZ_CRC_CE("ArchiveService"));
- }
- void ArchiveSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible)
- {
- incompatible.push_back(AZ_CRC_CE("ArchiveService"));
- }
- void ArchiveSystemComponent::GetRequiredServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& required)
- {
- }
- void ArchiveSystemComponent::GetDependentServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& dependent)
- {
- }
- ArchiveSystemComponent::ArchiveSystemComponent() = default;
- ArchiveSystemComponent::~ArchiveSystemComponent() = default;
- void ArchiveSystemComponent::Init()
- {
- }
- void ArchiveSystemComponent::Activate()
- {
- }
- void ArchiveSystemComponent::Deactivate()
- {
- }
- } // namespace Archive
|