OSDN Git Service

Merge with stable
[winmerge-jp/winmerge-jp.git] / Src / locality.h
1 /** 
2  * @file  locality.h
3  *
4  * @brief Declaration of helper functions involving locale
5  */
6 // RCS ID line follows -- this is updated by CVS
7 // $Id$
8
9 #ifndef locality_h_included
10 #define locality_h_included
11
12 #include "UnicodeString.h"
13 #include <boost/cstdint.hpp>
14
15 namespace locality {
16
17 String NumToLocaleStr(int n);
18 String NumToLocaleStr(boost::int64_t n);
19 String GetLocaleStr(const TCHAR *str, int decimalDigits = 0);
20 String TimeString(const boost::int64_t * tim);
21
22 };
23
24 #endif // locality_h_included