----------------------- READ ---------------------------------------
| 106 | } |
| 107 | //----------------------- READ --------------------------------------- |
| 108 | MemoryFrame MemoryFrame::read(int bytes) |
| 109 | { |
| 110 | MemoryFrame retval = this->getSubFrame(0, bytes); |
| 111 | this->skip(bytes); |
| 112 | return retval; |
| 113 | } |
| 114 | //----------------------- WRITE -------------------------------------- |
| 115 | void MemoryFrame::write(const MemoryFrame &source) |
| 116 | { |
nothing calls this directly
no test coverage detected