| 1413 | } |
| 1414 | |
| 1415 | void EntityDescriptionField::ReadString(std::string* str) const { |
| 1416 | str->assign(data.begin(), data.end()); |
| 1417 | } |
| 1418 | |
| 1419 | void EntityDescriptionField::WriteString(const std::string& str) { |
| 1420 | data.assign(str.begin(), str.end()); |
no test coverage detected