GeoreferencingModule.cpp 899 B

1234567891011121314151617181920212223242526
  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. #include "GeoreferencingSystemComponent.h"
  9. #include <Georeferencing/GeoreferencingTypeIds.h>
  10. #include <GeoreferencingModuleInterface.h>
  11. namespace Georeferencing
  12. {
  13. class GeoreferencingModule : public GeoreferencingModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(GeoreferencingModule, GeoreferencingModuleTypeId, GeoreferencingModuleInterface);
  17. AZ_CLASS_ALLOCATOR(GeoreferencingModule, AZ::SystemAllocator);
  18. };
  19. } // namespace Georeferencing
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), Georeferencing::GeoreferencingModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_LevelGeoreferencing, Georeferencing::GeoreferencingModule)
  24. #endif