| 113 | } |
| 114 | |
| 115 | bool PropertySet(T *base, const char *name, const char *val) { |
| 116 | typename OptionMap::iterator it = nameToDef.find(name); |
| 117 | if (it != nameToDef.end()) { |
| 118 | return it->second.Set(base, val); |
| 119 | } |
| 120 | return false; |
| 121 | } |
| 122 | |
| 123 | void DefineWordListSets(const char * const wordListDescriptions[]) { |
| 124 | if (wordListDescriptions) { |