aboutsummaryrefslogtreecommitdiffstats
path: root/include/litehtml/num_cvt.h
blob: bdfad8ecdbfa8491ceef60e2f4ee92f714bae358 (plain)
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