| 50 | } |
| 51 | |
| 52 | void MzXMLFile::store(const String & filename, const MapType & map) const |
| 53 | { |
| 54 | Internal::MzXMLHandler handler(map, filename, schema_version_, *this); |
| 55 | handler.setOptions(options_); |
| 56 | save_(filename, &handler); |
| 57 | } |
| 58 | |
| 59 | void MzXMLFile::transform(const String& filename_in, Interfaces::IMSDataConsumer * consumer, bool skip_full_count) |
| 60 | { |
nothing calls this directly
no test coverage detected