[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / importers / keyed_object_importer.hpp
1 #ifndef _RIVE_KEYED_OBJECT_IMPORTER_HPP_
2 #define _RIVE_KEYED_OBJECT_IMPORTER_HPP_
3
4 #include "importers/import_stack.hpp"
5
6 namespace rive
7 {
8         class Core;
9         class KeyedObject;
10         class KeyedProperty;
11         class KeyedObjectImporter : public ImportStackObject
12         {
13         private:
14                 KeyedObject* m_KeyedObject;
15
16         public:
17                 KeyedObjectImporter(KeyedObject* keyedObject);
18                 void addKeyedProperty(KeyedProperty* property);
19         };
20 } // namespace rive
21 #endif