| 47 | /// Getter and setter for name. |
| 48 | std::string_view getName() const noexcept { return Name; } |
| 49 | void setName(std::string_view N) { Name = N; } |
| 50 | |
| 51 | /// Getter for content vector. |
| 52 | Span<const Byte> getContent() const noexcept { return Content; } |
no outgoing calls