| #ifndef _RIVE_KEYED_OBJECT_IMPORTER_HPP_ | |
| #define _RIVE_KEYED_OBJECT_IMPORTER_HPP_ | |
| #include "importers/import_stack.hpp" | |
| namespace rive | |
| { | |
| class Core; | |
| class KeyedObject; | |
| class KeyedProperty; | |
| class KeyedObjectImporter : public ImportStackObject | |
| { | |
| private: | |
| KeyedObject* m_KeyedObject; | |
| public: | |
| KeyedObjectImporter(KeyedObject* keyedObject); | |
| void addKeyedProperty(KeyedProperty* property); | |
| }; | |
| } // namespace rive | |
| #endif |