| 16 | const char* OSWHierarchy::LevelName[] = { "protein", "peptide", "feature/peakgroup", "transition" }; |
| 17 | |
| 18 | void OSWData::addProtein(OSWProtein&& prot) |
| 19 | { |
| 20 | // check if transitions are known |
| 21 | checkTransitions_(prot); |
| 22 | proteins_.push_back(std::move(prot)); |
| 23 | } |
| 24 | |
| 25 | void OSWData::clear() |
| 26 | { |