| 49 | struct Section { |
| 50 | friend Stream& operator>>(Stream& stream, Section&& secion); |
| 51 | Section(const byte_t id = (byte_t)0x00) : id(id) {}; |
| 52 | const byte_t id; |
| 53 | protected: |
| 54 | virtual Stream& read(Stream& stream); |
nothing calls this directly
no outgoing calls
no test coverage detected