* Functor to check for mind shield capability. */
| 1170 | * Functor to check for mind shield capability. |
| 1171 | */ |
| 1172 | struct isMindShield: public std::unary_function<BaseFacility*, bool> |
| 1173 | { |
| 1174 | /// Check isMindShield() for @a facility. |
| 1175 | bool operator()(const BaseFacility *facility) const; |
| 1176 | }; |
| 1177 | |
| 1178 | /** |
| 1179 | * Only fully operational facilities are checked. |