blob: 945d4d20da2867bc071a3fde504f035c1e484d5d [file] [log] [blame]
#ifndef _RIVE_KEYED_OBJECT_IMPORTER_HPP_
#define _RIVE_KEYED_OBJECT_IMPORTER_HPP_
#include "rive/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