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