本文整理汇总了C++中QSObject::imp方法的典型用法代码示例。如果您正苦于以下问题:C++ QSObject::imp方法的具体用法?C++ QSObject::imp怎么用?C++ QSObject::imp使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QSObject
的用法示例。
在下文中一共展示了QSObject::imp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: defaultValue
// ECMA 8.6.2.6 (new draft)
QSObject Imp::defaultValue(const QSObject *o, Type hint) const
{
#if 0
QSObject obj;
/* TODO String on Date object */
if (hint != StringType && hint != NumberType)
hint = NumberType;
if (hint == StringType)
obj = get(o, "toString");
else
obj = get(o, "valueOf");
Imp *that = (Imp *)this;
if (obj.isExecutable()) { // spec says "not primitive type" but ...
FunctionImp *f = (FunctionImp *)obj.imp();
QSObject t(that);
QSObject s = f->executeCall(&t, 0);
if (!s.isObject())
return s;
}
if (hint == StringType)
obj = get(o, "valueOf");
else
obj = get(o, "toString");
if (obj.isExecutable()) {
FunctionImp *f = (FunctionImp *)obj.imp();
QSObject t(that);
QSObject s = f->executeCall(&t, 0);
if (!s.isObject())
return s;
}
#endif
return Error::create(TypeError, "No default value");
}
示例2: remove
void QSList::remove( const QSObject &obj )
{
if ( !obj.isValid() )
return;
#if 0 // ###
ListNode *n = hook->next;
while ( n != hook ) {
if ( n->member.imp() == obj.imp() ) {
erase( n );
return;
}
n = n->next;
}
#endif
}