blob: dc0b70dfed7a038e68400bdd706c4e54a8948e71 [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