/// @param name name of the parameter
/// @return an uint32_t value
/// @throw isc::dhcp::DhcpConfigError when it is not an uint32_t
- uint32_t getUint32(isc::data::ConstElementPtr scope,
- const std::string& name) {
+ uint32_t getUint32(isc::data::ConstElementPtr scope, const std::string& name) {
return (getIntType<uint32_t>(scope, name));
}
/// @param name name of the parameter
/// @return an uint16_t value
/// @throw isc::dhcp::DhcpConfigError when it is not an uint16_t
- uint16_t getUint16(isc::data::ConstElementPtr scope,
- const std::string& name) {
+ uint16_t getUint16(isc::data::ConstElementPtr scope, const std::string& name) {
return (getIntType<uint16_t>(scope, name));
}