| 3614 | } |
| 3615 | |
| 3616 | void PropertyMaterialList::readString(Base::InputStream& str, std::string& value) |
| 3617 | { |
| 3618 | uint32_t uCt {}; |
| 3619 | str >> uCt; |
| 3620 | |
| 3621 | std::vector<char> temp(uCt); |
| 3622 | str.read(temp.data(), uCt); |
| 3623 | value.assign(temp.data(), temp.size()); |
| 3624 | } |
| 3625 | |
| 3626 | const char* PropertyMaterialList::getEditorName() const |
| 3627 | { |