blob: 5962545764865d53ee297a409afe666b0f24cf59 [file] [log] [blame]
#ifndef _RIVE_CORE_STRING_TYPE_HPP_
#define _RIVE_CORE_STRING_TYPE_HPP_
#include <string>
namespace rive
{
class BinaryReader;
class CoreStringType
{
public:
static const int id = 1;
static std::string deserialize(BinaryReader& reader);
};
} // namespace rive
#endif