| 16 | { |
| 17 | |
| 18 | PeptideIdentification::PeptideIdentification() : |
| 19 | MetaInfoInterface(), |
| 20 | id_(), |
| 21 | hits_(), |
| 22 | significance_threshold_(0.0), |
| 23 | score_type_(), |
| 24 | higher_score_better_(true), |
| 25 | base_name_(), |
| 26 | mz_(std::numeric_limits<double>::quiet_NaN()), |
| 27 | rt_(std::numeric_limits<double>::quiet_NaN()) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | PeptideIdentification::~PeptideIdentification() noexcept = default; |
| 32 |
no outgoing calls