24 lines
188 B
C++
24 lines
188 B
C++
#ifndef LIME_SYSTEM_LOCALE_H
|
|
#define LIME_SYSTEM_LOCALE_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class Locale {
|
|
|
|
|
|
public:
|
|
|
|
static std::string* GetSystemLocale ();
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |