Files
rive-cpp/include/rive/data_bind_path_referencer.hpp
bodymovin 5a94a09dfb feature: add support for relative view model data bind paths for nested artboards (#11344) 923b32059d
feature: add support for relative view model data bind paths

Co-authored-by: hernan <hernan@rive.app>
2025-12-23 23:14:54 +00:00

23 lines
573 B
C++

#ifndef _RIVE_DATA_BIND_PATH_REFERENCER_HPP_
#define _RIVE_DATA_BIND_PATH_REFERENCER_HPP_
#include <stdio.h>
#include "rive/data_bind/data_bind_path.hpp"
namespace rive
{
class File;
class DataBindPathReferencer
{
public:
~DataBindPathReferencer();
DataBindPath* dataBindPath() const { return m_dataBindPath; }
void copyDataBindPath(DataBindPath* dataBindPath);
void importDataBindPath(ImportStack& importStack);
void decodeDataBindPath(Span<const uint8_t>& value);
protected:
DataBindPath* m_dataBindPath = nullptr;
};
} // namespace rive
#endif