17 explicit constexpr M49Code(uint16_t value) : m_value(value) {}
18 constexpr uint16_t value()
const {
return m_value; }
20 bool operator==(
M49Code other)
const {
return m_value == other.m_value; }
21 bool operator!=(
M49Code other)
const {
return m_value != other.m_value; }