| 952 | } |
| 953 | |
| 954 | void Properties::Delete(const string &propName) { |
| 955 | vector<string>::iterator it = find(names.begin(), names.end(), propName); |
| 956 | if (it != names.end()) |
| 957 | names.erase(it); |
| 958 | |
| 959 | props.erase(propName); |
| 960 | } |
| 961 | |
| 962 | void Properties::DeleteAll(const vector<string> &propNames) { |
| 963 | BOOST_FOREACH(const string &n, propNames) |