* Constructs a key value pair. * * @param[in] key Key * @param[in] name User friendly name * @param[in] defValue Default value */
| 69 | * @param[in] defValue Default value |
| 70 | */ |
| 71 | KeyValueBool(const char* key, const char* name, bool defValue) : |
| 72 | KeyValue(), |
| 73 | m_key(key), |
| 74 | m_name(name), |
| 75 | m_defValue(defValue) |
| 76 | { |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Constructs a key value pair. |
nothing calls this directly
no outgoing calls
no test coverage detected