| 749 | } |
| 750 | |
| 751 | bool Tile::hasChangedForSeat(Seat* seat) const |
| 752 | { |
| 753 | for(const std::pair<Seat*, bool>& seatChanged : mTileChangedForSeats) |
| 754 | { |
| 755 | if(seatChanged.first != seat) |
| 756 | continue; |
| 757 | |
| 758 | return seatChanged.second; |
| 759 | } |
| 760 | OD_LOG_ERR("tile=" + Tile::displayAsString(this) + ", unknown seat id=" + Helper::toString(seat->getId())); |
| 761 | return false; |
| 762 | } |
| 763 | |
| 764 | void Tile::changeNotifiedForSeat(Seat* seat) |
| 765 | { |
no test coverage detected