forked from organicmaps/organicmaps
Add interface for concurrent running.
This commit is contained in:
parent
c96b27fb33
commit
eb03ebc866
1 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,8 @@
|
|||
#include "../std/string.hpp"
|
||||
#include "../std/vector.hpp"
|
||||
#include "../std/utility.hpp"
|
||||
#include "../std/function.hpp"
|
||||
|
||||
|
||||
DECLARE_EXCEPTION(FileAbsentException, RootException);
|
||||
DECLARE_EXCEPTION(NotImplementedException, RootException);
|
||||
|
@ -67,6 +69,13 @@ public:
|
|||
static bool GetFileSizeByFullPath(string const & filePath, uint64_t & size);
|
||||
//@}
|
||||
|
||||
/// @name Functions for concurrent tasks.
|
||||
//@{
|
||||
typedef function<void()> TFunctor;
|
||||
inline void RunInGuiThread(TFunctor const & fn) { fn(); }
|
||||
inline void RunAsync(TFunctor const & fn) { fn(); }
|
||||
//@}
|
||||
|
||||
int CpuCores() const;
|
||||
|
||||
double VisualScale() const;
|
||||
|
|
Loading…
Add table
Reference in a new issue