ManifestMetaInfoHandler.h 839 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. #include <AzCore/Memory/Memory.h>
  10. #include <SceneAPI/SceneCore/Events/ManifestMetaInfoBus.h>
  11. namespace AZ
  12. {
  13. namespace SceneAPI
  14. {
  15. namespace UI
  16. {
  17. class ManifestMetaInfoHandler : public Events::ManifestMetaInfoBus::Handler
  18. {
  19. public:
  20. AZ_CLASS_ALLOCATOR_DECL
  21. ManifestMetaInfoHandler();
  22. ~ManifestMetaInfoHandler() override;
  23. void GetIconPath(AZStd::string& iconPath, const DataTypes::IManifestObject& target) override;
  24. };
  25. } // SceneData
  26. } // SceneAPI
  27. } // AZ