本文整理汇总了C++中KValueRef::SetMethod方法的典型用法代码示例。如果您正苦于以下问题:C++ KValueRef::SetMethod方法的具体用法?C++ KValueRef::SetMethod怎么用?C++ KValueRef::SetMethod使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KValueRef
的用法示例。
在下文中一共展示了KValueRef::SetMethod方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _AddEventListener
void KEventObject::_AddEventListener(const ValueList& args, KValueRef result)
{
std::string event;
KMethodRef callback;
if (args.size() > 1 && args.at(0)->IsString() && args.at(1)->IsMethod())
{
event = args.GetString(0);
callback = args.GetMethod(1);
}
else if (args.size() > 0 && args.at(0)->IsMethod())
{
event = Event::ALL;
callback = args.GetMethod(0);
}
else
{
throw ValueException::FromString("Incorrect arguments passed to addEventListener");
}
this->AddEventListener(event, callback);
result->SetMethod(callback);
}
示例2: _CreateKMethod
void APIBinding::_CreateKMethod(const ValueList& args, KValueRef result)
{
args.VerifyException("createKMethod", "m");
KMethodRef wrapped = args.GetMethod(0);
result->SetMethod(new KMethodWrapper(args.GetMethod(0)));
}