| 53 | }; |
| 54 | |
| 55 | Precursor::Precursor(Precursor&& rhs) noexcept : |
| 56 | CVTermList(std::move(rhs)), |
| 57 | Peak1D(std::move(rhs)), |
| 58 | activation_methods_(std::move(rhs.activation_methods_)), |
| 59 | activation_energy_(rhs.activation_energy_), |
| 60 | window_low_(rhs.window_low_), |
| 61 | window_up_(rhs.window_up_), |
| 62 | drift_time_(rhs.drift_time_), |
| 63 | drift_window_low_(rhs.drift_window_low_), |
| 64 | drift_window_up_(rhs.drift_window_up_), |
| 65 | drift_time_unit_(rhs.drift_time_unit_), |
| 66 | charge_(rhs.charge_), |
| 67 | possible_charge_states_(std::move(rhs.possible_charge_states_)) |
| 68 | { |
| 69 | } |
| 70 | |
| 71 | bool Precursor::operator==(const Precursor& rhs) const |
| 72 | { |
no outgoing calls