| 28 | } |
| 29 | |
| 30 | bool Image::contains(const LogicalLocation& location) const |
| 31 | { |
| 32 | return _sectors.find(location) != _sectors.end(); |
| 33 | } |
| 34 | |
| 35 | std::shared_ptr<const Sector> Image::get(const LogicalLocation& location) const |
| 36 | { |
no test coverage detected