| 484 | ComponentTypeCode getCode() const noexcept { return Inner.Data.TCode; } |
| 485 | uint32_t getTypeIndex() const noexcept { return Inner.Data.Idx; } |
| 486 | const std::array<uint8_t, 8> getRawData() const noexcept { |
| 487 | std::array<uint8_t, 8> R; |
| 488 | std::copy_n(Inner.Raw, 8, R.begin()); |
| 489 | return R; |
| 490 | } |
| 491 | |
| 492 | void setCode(const ComponentTypeCode C) noexcept { |
| 493 | Inner.Data.TCode = C; |