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 'anim/task.cpp')
-rw-r--r--anim/task.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/anim/task.cpp b/anim/task.cpp
index 92a5c4b04e..72bbdb2cfa 100644
--- a/anim/task.cpp
+++ b/anim/task.cpp
@@ -97,6 +97,11 @@ namespace anim
return State() == EReady;
}
+ bool Task::IsVisual() const
+ {
+ return false;
+ }
+
void Task::AddCallback(EState state, TCallback const & cb)
{
m_Callbacks[state].push_back(cb);