| 44 | } |
| 45 | |
| 46 | vector<string> GetLocalizedTypes(ftypes::BaseChecker const & checker, TypesHolder const & types) |
| 47 | { |
| 48 | auto const & c = classif(); |
| 49 | vector<string> localized; |
| 50 | for (auto const t : types) |
| 51 | if (checker(t)) |
| 52 | localized.push_back(localisation::TranslatedFeatureType(c.GetReadableObjectName(t))); |
| 53 | return localized; |
| 54 | } |
| 55 | |
| 56 | class FeatureEstimator |
| 57 | { |
no test coverage detected