updated licenses info
[platform/core/uifw/lottie-player.git] / src / lottie / lottieloader.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the LGPL License, Version 2.1 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.gnu.org/licenses/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef LOTTIELOADER_H
18 #define LOTTIELOADER_H
19
20 #include<sstream>
21 #include<memory>
22
23 class LOTModel;
24 class LottieLoader
25 {
26 public:
27    bool load(const std::string &filePath);
28    bool loadFromData(std::string &&jsonData, const std::string &key);
29    std::shared_ptr<LOTModel> model();
30 private:
31    std::shared_ptr<LOTModel>    mModel;
32 };
33
34 #endif // LOTTIELOADER_H
35
36