summaryrefslogtreecommitdiff
path: root/include/mbgl/util/platform.hpp
blob: 2e11e5f1861a31d536a03f3bb40e46283877dacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include <string>

namespace mbgl {
namespace platform {

class Request;

// Uppercase a string, potentially using platform-specific routines.
std::string uppercase(const std::string &string);

// Lowercase a string, potentially using platform-specific routines.
std::string lowercase(const std::string &string);

// Gets the name of the current thread.
std::string getCurrentThreadName();

std::string formatNumber(double number, const std::string& localeId, const std::string& currency,
                         uint8_t minFractionDigits, uint8_t maxFractionDigits);

// Set the name of the current thread, truncated at 15.
void setCurrentThreadName(const std::string& name);

// Makes the current thread low priority.
void makeThreadLowPriority();

} // namespace platform
} // namespace mbgl