jiuyiUniapp/service/node_modules/react-native/ReactCommon/react/renderer/imagemanager/ImageManager.h

41 lines
919 B
C
Raw Normal View History

2025-02-13 09:59:20 +08:00
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <memory>
#include <react/renderer/core/ReactPrimitives.h>
#include <react/renderer/imagemanager/ImageRequest.h>
#include <react/renderer/imagemanager/primitives.h>
#include <react/utils/ContextContainer.h>
namespace facebook::react {
class ImageManager;
using SharedImageManager = std::shared_ptr<ImageManager>;
/*
* Cross platform facade for image management (e.g. iOS-specific
* RCTImageManager)
*/
class ImageManager {
public:
ImageManager(const ContextContainer::Shared& contextContainer);
virtual ~ImageManager();
virtual ImageRequest requestImage(
const ImageSource& imageSource,
SurfaceId surfaceId) const;
private:
void* self_{};
};
} // namespace facebook::react