| 115 | } |
| 116 | |
| 117 | inline std::string StringFromFlatbuffers(const flatbuffers::String* s) { |
| 118 | return (s == NULLPTR) ? "" : s->str(); |
| 119 | } |
| 120 | |
| 121 | // Read interface classes. We do not fully deserialize the flatbuffers so that |
| 122 | // individual fields metadata can be retrieved from very large schema without |
no test coverage detected