| 97 | } |
| 98 | |
| 99 | Goal* Seat::getUncompleteGoal(unsigned int index) |
| 100 | { |
| 101 | if (index >= mUncompleteGoals.size()) |
| 102 | return nullptr; |
| 103 | |
| 104 | return mUncompleteGoals[index]; |
| 105 | } |
| 106 | |
| 107 | void Seat::clearUncompleteGoals() |
| 108 | { |
no outgoing calls
no test coverage detected