|
|
static scope & | subs () |
| |
|
static me & | extend (const scope &src) |
| |
|
static me & | func (const std::string &name, const baseFunc &bridgeFunc) |
| |
|
static me & | func (const std::string &name, const baseFunc *bridgeFunc) |
| |
|
static me & | ctor () |
| |
|
template<typename... Args> |
| static me & | ctor () |
| |
|
template<typename Ret , typename T1 = T, typename... Args> |
| static me & | closure (const std::string &name, std::function< Ret(T1 &, Args...)> c) |
| |
|
template<typename Ret , typename T1 = T> |
| static me & | closure (const std::string &name, std::function< Ret(T1 &)> c) |
| |
|
template<typename Ret , typename... Args> |
| static me & | func (const std::string &name, Ret(T::*fptr)(Args...)) |
| |
|
template<typename Ret , typename... Args> |
| static me & | func (const std::string &name, Ret(T::*fptr)(Args...) const) |
| |
|
template<typename Ret , typename... Args> |
| static me & | funcNonConst (const std::string &name, Ret(T::*fptr)(Args...)) |
| |
|
template<typename Ret , typename... Args> |
| static me & | funcConst (const std::string &name, Ret(T::*fptr)(Args...) const) |
| |
|
template<typename Ret , typename... Args> |
| static me & | genericFunc (const std::string &name, Ret(T::*fptr)(Args...)) |
| |
|
template<typename Ret , typename... Args> |
| static me & | genericFuncNonConst (const std::string &name, Ret(T::*fptr)(Args...)) |
| |
|
template<typename Ret , typename... Args> |
| static me & | genericFunc (const std::string &name, Ret(T::*fptr)(Args...) const) |
| |
|
template<typename Ret , typename... Args> |
| static me & | genericFuncConst (const std::string &name, Ret(T::*fptr)(Args...) const) |
| |