submodule: add rive-cpp to rive-tizen as submodule
[platform/core/uifw/rive-tizen.git] / submodule / include / core / field_types / core_string_type.hpp
1 #ifndef _RIVE_CORE_STRING_TYPE_HPP_
2 #define _RIVE_CORE_STRING_TYPE_HPP_
3
4 #include <string>
5
6 namespace rive
7 {
8         class BinaryReader;
9         class CoreStringType
10         {
11         public:
12                 static const int id = 1;
13                 static std::string deserialize(BinaryReader& reader);
14         };
15 } // namespace rive
16 #endif