Developer Documentation
int2roman.hh
1 #ifndef INT2ROMAN_HH
2 #define INT2ROMAN_HH
3 
4 #include <string>
5 
6 std::string int2roman( size_t decimal, size_t length=30 );
7 
8 #endif