blob: 75d47643bc15a0ed9a377e2cff919636513b4272 [file] [log] [blame]
#ifndef _RIVE_DATA_RESOLVER_HPP_
#define _RIVE_DATA_RESOLVER_HPP_
#include <stdio.h>
#include <string>
namespace rive
{
class DataResolver
{
public:
virtual const std::string& resolveName(int id) = 0;
virtual const std::vector<uint32_t>& resolvePath(int id) = 0;
};
} // namespace rive
#endif