mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
366 B
C++
17 lines
366 B
C++
#ifndef AnimationImageProvider_hpp
|
|
#define AnimationImageProvider_hpp
|
|
|
|
#include "Lottie/Public/Primitives/CALayer.hpp"
|
|
#include "Lottie/Private/Model/Assets/ImageAsset.hpp"
|
|
|
|
namespace lottie {
|
|
|
|
class AnimationImageProvider {
|
|
public:
|
|
virtual std::shared_ptr<CGImage> imageForAsset(ImageAsset const &imageAsset) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* AnimationImageProvider_hpp */
|