| 13 | namespace OpenMS |
| 14 | { |
| 15 | FeatureHandle::FeatureHandle() : |
| 16 | Peak2D(), |
| 17 | UniqueIdInterface(), |
| 18 | map_index_(0), |
| 19 | charge_(0), |
| 20 | width_(0) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | FeatureHandle::FeatureHandle(UInt64 map_index, const Peak2D& point, UInt64 element_index) : |
| 25 | Peak2D(point), |
nothing calls this directly
no test coverage detected