Photon 1.0.0
Loading...
Searching...
No Matches
num_cvt.h
Go to the documentation of this file.
1#ifndef NUM_CVT_H
2#define NUM_CVT_H
3
4#include "types.h"
5
6namespace litehtml
7{
8 namespace num_cvt
9 {
10 string to_latin_lower(int val);
11 string to_latin_upper(int val);
12 string to_greek_lower(int val);
13 string to_roman_lower(int value);
14 string to_roman_upper(int value);
15 }
16}
17
18#endif // NUM_CVT_H
Definition core.h:1598
string to_roman_upper(int value)
Definition num_cvt.cpp:83
string to_greek_lower(int val)
Definition num_cvt.cpp:51
string to_latin_upper(int val)
Definition num_cvt.cpp:46
string to_latin_lower(int val)
Definition num_cvt.cpp:41
string to_roman_lower(int value)
Definition num_cvt.cpp:56
Definition background.h:12