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