| 59 | SavedGame::QUICKSAVE = "_quick_.asav"; |
| 60 | |
| 61 | struct findRuleResearch : public std::unary_function<ResearchProject *, |
| 62 | bool> |
| 63 | { |
| 64 | RuleResearch * _toFind; |
| 65 | findRuleResearch(RuleResearch * toFind); |
| 66 | bool operator()(const ResearchProject *r) const; |
| 67 | }; |
| 68 | |
| 69 | findRuleResearch::findRuleResearch(RuleResearch * toFind) : _toFind(toFind) |
| 70 | { |
no outgoing calls
no test coverage detected