| 234 | } |
| 235 | |
| 236 | void FeatureUtility::CollectFeatures(const String& feature_file, std::vector<String>& features) |
| 237 | { |
| 238 | String feature = Utility::BaseName(feature_file); |
| 239 | boost::algorithm::replace_all(feature, ".conf", ""); |
| 240 | |
| 241 | Log(LogDebug, "cli") |
| 242 | << "Adding feature: " << feature; |
| 243 | features.push_back(feature); |
| 244 | } |