| 282 | |
| 283 | template<typename T> |
| 284 | void SerializeToFile(const wchar* filePath, const T& item) |
| 285 | { |
| 286 | FileWriteSerializer serializer(filePath); |
| 287 | SerializeItem(serializer, item); |
| 288 | } |
| 289 | |
| 290 | } |
nothing calls this directly
no test coverage detected