| 16 | option_impl::~option_impl() { } |
| 17 | |
| 18 | bool option_impl::equals(const option_impl& _other) const { |
| 19 | return (type_ == _other.get_type() && length_ == _other.get_length()); |
| 20 | } |
| 21 | |
| 22 | uint16_t option_impl::get_length() const { |
| 23 | return length_; |
no test coverage detected