| 206 | } |
| 207 | |
| 208 | StringSetting::StringSetting(const char* description, |
| 209 | type_t type, |
| 210 | permissions_t permissions, |
| 211 | const char* grblName, |
| 212 | const char* name, |
| 213 | const char* defVal, |
| 214 | int32_t min, |
| 215 | int32_t max) : |
| 216 | Setting(description, type, permissions, grblName, name), |
| 217 | _defaultValue(defVal), _currentValue(defVal), _minLength(min), _maxLength(max) { |
| 218 | load(); |
| 219 | }; |
| 220 | |
| 221 | void StringSetting::load() { |
| 222 | size_t len = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected