ONNXModule.cpp 617 B

1234567891011121314151617181920212223
  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 <ONNXModuleInterface.h>
  9. #include "ONNXSystemComponent.h"
  10. namespace ONNX
  11. {
  12. class ONNXModule
  13. : public ONNXModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(ONNXModule, "{E006F52B-8EC8-4DFE-AB9D-C5EF7A1A8F32}", ONNXModuleInterface);
  17. AZ_CLASS_ALLOCATOR(ONNXModule, AZ::SystemAllocator, 0);
  18. };
  19. }// namespace ONNX
  20. AZ_DECLARE_MODULE_CLASS(Gem_ONNX, ONNX::ONNXModule)