| 211 | |
| 212 | template <typename T> |
| 213 | bool ParameterParser::encodeDecode(boost::property_tree::ptree& tree, T& value, T const& defaultValue, std::string const& node, ParserTask task) |
| 214 | { |
| 215 | return detail::encodeDecodeImpl(tree, value, defaultValue, node, task); |
| 216 | } |
| 217 | |
| 218 | template <typename T> |
| 219 | bool ParameterParser::encodeDecodeWithEnabled( |
nothing calls this directly
no test coverage detected