Add some thread classes and fix SharedData with a simple mutex adapter

This commit is contained in:
Vinnie Falco
2013-09-20 02:36:47 -07:00
parent 755ab36f0d
commit 9534516b42
17 changed files with 574 additions and 332 deletions

View File

@@ -53,7 +53,7 @@ public:
R operator() ()
{
return m_f ();
return (m_f)();
}
private:
@@ -136,7 +136,7 @@ public:
R operator() (P1 p1)
{
return m_f (p1);
return (m_f)(p1);
}
private: