Added small tutorial on custom properties

This commit is contained in:
Jan Möbius
2019-03-12 08:00:17 +01:00
parent c7107e1f97
commit c2792234d1
9 changed files with 245 additions and 162 deletions

View File

@@ -0,0 +1,8 @@
#ifndef INT2ROMAN_HH
#define INT2ROMAN_HH
#include <string>
std::string int2roman( size_t decimal, size_t length=30 );
#endif