| 737 | |
| 738 | template <typename T> |
| 739 | funct_wrap0<T> wrap_function(T (&f)()) { return funct_wrap0<T>(f); } |
| 740 | template <typename T, typename A0> |
| 741 | funct_wrap1<T,A0> wrap_function(T (&f)(A0)) { return funct_wrap1<T,A0>(f); } |
| 742 | template <typename T, typename A0, typename A1> |