| 26 | MzIdentMLFile::~MzIdentMLFile() = default; |
| 27 | |
| 28 | void MzIdentMLFile::load(const String& filename, std::vector<ProteinIdentification>& poid, std::vector<PeptideIdentification>& peid) |
| 29 | { |
| 30 | Internal::MzIdentMLDOMHandler handler(poid, peid, schema_version_, *this); |
| 31 | handler.readMzIdentMLFile(filename); |
| 32 | } |
| 33 | |
| 34 | void MzIdentMLFile::store(const String& filename, const Identification& id) const |
| 35 | { |
no test coverage detected