| 797 | } |
| 798 | |
| 799 | void Selection::SetSimple(int64_t offset, int64_t len) { |
| 800 | _type = SelectionType::Simple; |
| 801 | _offset = offset; |
| 802 | _length = len; |
| 803 | } |
| 804 | |
| 805 | void Selection::SetBox(int64_t offset, int bytesPerLine, int width, int height) { |
| 806 | _type = SelectionType::Box; |
no outgoing calls
no test coverage detected