12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * 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 <AzCore/Interface/Interface.h>
- #include <XR/XRFactory.h>
- namespace XR
- {
- AZ::Crc32 Factory::GetPlatformService()
- {
- return AZ_CRC_CE("XRPlatformService");
- }
- void Factory::Register(Factory* instance)
- {
- AZ::Interface<Factory>::Register(instance);
- }
- void Factory::Unregister(Factory* instance)
- {
- AZ::Interface<Factory>::Unregister(instance);
- }
- bool Factory::IsReady()
- {
- return AZ::Interface<Factory>::Get() != nullptr;
- }
- Factory& Factory::Get()
- {
- Factory* factory = AZ::Interface<Factory>::Get();
- AZ_Assert(factory, "XR::Factory failed to create!!!");
- return *factory;
- }
- } // namespace XR
|