Welcome to mirror list, hosted at ThFree Co, Russian Federation.

locale.hpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07255f2a9f96b9bce8356a19c066ed5324cf3d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <string>

namespace platform
{
struct Locale
{
public:
  std::string m_language;
  std::string m_country;
  std::string m_currency;
};

Locale GetCurrentLocale();
}  // namespace platform