16 #ifndef ECL_CONVERTERS_CHAR_HPP_ 17 #define ECL_CONVERTERS_CHAR_HPP_ 41 class Converter<char,unsigned int> :
public converters::ConverterBase {
62 return (
'0'+ input%10);
71 class Converter<char,int> :
public converters::ConverterBase {
88 if ( ( input < 0 ) || (input > 9) ) {
92 return (
'0'+ input%10);
Primary templates for the family of converter classes.
char operator()(const int &input) ecl_debug_throw_decl(StandardException)
Primary template and general fallback for converter classes.
char operator()(const unsigned int &input) ecl_debug_throw_decl(StandardException)
#define ecl_debug_throw_decl(exception)
#define ecl_debug_throw(exception)