Add automatic unwrapping of Proxy_Function_Impl contained boost::function during functor() construction if possible.

Task #110
This commit is contained in:
Jason Turner
2010-11-14 01:17:56 +00:00
parent 5f661fad20
commit a758c86ba5
2 changed files with 18 additions and 0 deletions

View File

@@ -457,6 +457,11 @@ namespace chaiscript
return "";
}
boost::function<Func> internal_function() const
{
return m_f;
}
protected:
virtual Boxed_Value do_call(const std::vector<Boxed_Value> &params) const
{