| 54 | |
| 55 | template <typename Archiver> |
| 56 | void load(Archiver& ar, std::string& str, const unsigned int vtkNotUsed(version)) |
| 57 | { |
| 58 | std::string utf8; |
| 59 | ar& utf8; |
| 60 | str = utf8; |
| 61 | } |
| 62 | |
| 63 | //---------------------------------------------------------------------------- |
| 64 | // vtkVariant serialization code |
no test coverage detected