| 41 | } |
| 42 | |
| 43 | std::shared_ptr<Sector> Image::put(const LogicalLocation& location) |
| 44 | { |
| 45 | auto sector = std::make_shared<Sector>(location); |
| 46 | _sectors[location] = sector; |
| 47 | return sector; |
| 48 | } |
| 49 | |
| 50 | void Image::erase(const LogicalLocation& location) |
| 51 | { |
no outgoing calls
no test coverage detected