aboutsummaryrefslogtreecommitdiffstats
path: root/include/litehtml/num_cvt.h
blob: 0eaaa688686a86f9723215ae6a52a5f7afec89c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef NUM_CVT_H
#define NUM_CVT_H

#include <string>
#include "os_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