----------------------- GET FRAME UPTO -----------------------------
| 45 | } |
| 46 | //----------------------- GET FRAME UPTO ----------------------------- |
| 47 | MemoryFrame MemoryFrame::getFrameUpto(const MemoryFrame &upto) |
| 48 | { |
| 49 | if(!this->isInside(upto.begin())) |
| 50 | { |
| 51 | throw GeneralException(__FUNCTION__ ": upto frame not inside this one"); |
| 52 | } |
| 53 | return this->getSubFrame(0, (int)upto.begin() - (int)begin()); |
| 54 | } |
| 55 | //----------------------- BEGIN -------------------------------------- |
| 56 | void *MemoryFrame::begin() const |
| 57 | { |
no test coverage detected