* Functor to check for completed facilities. */
| 1194 | * Functor to check for completed facilities. |
| 1195 | */ |
| 1196 | struct isCompleted: public std::unary_function<BaseFacility*, bool> |
| 1197 | { |
| 1198 | /// Check isCompleted() for @a facility. |
| 1199 | bool operator()(const BaseFacility *facility) const; |
| 1200 | }; |
| 1201 | |
| 1202 | /** |
| 1203 | * Facilities are checked for construction completion. |