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

tizen_utils.hpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51344d0660a9c74bcace4093cf45095ba2423642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include "std/string.hpp"
#include "std/target_os.hpp"
#include <FLocales.h>

#ifdef OMIM_OS_TIZEN
namespace Tizen
{
  namespace Base
  {
    class String;
  }
}

//Convert from Tizen string to std::string
string FromTizenString(Tizen::Base::String const & str_tizen);
string CodeFromISO369_2to_1(string const & code);
string GetLanguageCode(Tizen::Locales::LanguageCode code);
string GetTizenLocale();

#endif