[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / importers / linear_animation_importer.hpp
1 #ifndef _RIVE_LINEAR_ANIMATION_IMPORTER_HPP_
2 #define _RIVE_LINEAR_ANIMATION_IMPORTER_HPP_
3
4 #include "importers/import_stack.hpp"
5
6 namespace rive
7 {
8         class Core;
9         class LinearAnimation;
10         class KeyedObject;
11         class LinearAnimationImporter : public ImportStackObject
12         {
13         private:
14                 LinearAnimation* m_Animation;
15
16         public:
17                 LinearAnimation* animation() const { return m_Animation; };
18                 LinearAnimationImporter(LinearAnimation* animation);
19                 void addKeyedObject(KeyedObject* object);
20         };
21 } // namespace rive
22 #endif