mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
15 lines
367 B
C++
15 lines
367 B
C++
#ifndef LayerModelSerialization_hpp
|
|
#define LayerModelSerialization_hpp
|
|
|
|
#include "json11/json11.hpp"
|
|
#include "Lottie/Private/Parsing/JsonParsing.hpp"
|
|
#include "Lottie/Private/Model/Layers/LayerModel.hpp"
|
|
|
|
namespace lottie {
|
|
|
|
std::shared_ptr<LayerModel> parseLayerModel(json11::Json::object const &json) noexcept(false);
|
|
|
|
}
|
|
|
|
#endif /* LayerModelSerialization_hpp */
|