| 105 | return SC_TYPE_BOOLEAN; |
| 106 | } |
| 107 | const char *DescribeProperty(const char *name) { |
| 108 | typename OptionMap::iterator it = nameToDef.find(name); |
| 109 | if (it != nameToDef.end()) { |
| 110 | return it->second.description.c_str(); |
| 111 | } |
| 112 | return ""; |
| 113 | } |
| 114 | |
| 115 | bool PropertySet(T *base, const char *name, const char *val) { |
| 116 | typename OptionMap::iterator it = nameToDef.find(name); |
nothing calls this directly
no outgoing calls
no test coverage detected