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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'platform/platform_linux.cpp')
-rw-r--r--platform/platform_linux.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/platform/platform_linux.cpp b/platform/platform_linux.cpp
index 54f21a49a9..9cfebaa4b5 100644
--- a/platform/platform_linux.cpp
+++ b/platform/platform_linux.cpp
@@ -68,3 +68,15 @@ string Platform::UniqueClientId() const
{
return "@TODO";
}
+
+void Platform::RunOnGuiThread(TFunctor const & fn)
+{
+ // @TODO
+ fn();
+}
+
+void Platform::RunAsync(TFunctor const & fn, Priority p)
+{
+ // @TODO
+ fn();
+}