1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef NUM_CVT_H #define NUM_CVT_H #include "types.h" namespace litehtml { namespace num_cvt { string to_latin_lower(int val); string to_latin_upper(int val); string to_greek_lower(int val); string to_roman_lower(int value); string to_roman_upper(int value); } } #endif // NUM_CVT_H