Add interface for concurrent running.

This commit is contained in:
vng 2011-12-14 21:27:40 +03:00 committed by Alex Zolotarev
parent c96b27fb33
commit eb03ebc866

View file

@ -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;