| 19 | } |
| 20 | |
| 21 | ScriptIndustryList_CargoAccepting::ScriptIndustryList_CargoAccepting(CargoType cargo_type) |
| 22 | { |
| 23 | ScriptList::FillList<Industry>(this, |
| 24 | [cargo_type](const Industry *i) { return i->IsCargoAccepted(cargo_type); } |
| 25 | ); |
| 26 | } |
| 27 | |
| 28 | ScriptIndustryList_CargoProducing::ScriptIndustryList_CargoProducing(CargoType cargo_type) |
| 29 | { |
nothing calls this directly
no test coverage detected