* Creates a blank ruleset for a certain type of region. * @param type String defining the type. */
| 32 | * @param type String defining the type. |
| 33 | */ |
| 34 | RuleRegion::RuleRegion(const std::string &type): _type(type), _cost(0), _lonMin(), _lonMax(), _latMin(), _latMax(), _cities(), _regionWeight(0), _missionRegion("") |
| 35 | { |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Deletes the cities from memory. |
nothing calls this directly
no outgoing calls
no test coverage detected