Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want Qt objects to be passed as PyWrapperBase to the SDK...is there something that can be done?
def_visible_primitive(isPyWrapper, "isPyWrapper");
Value* isPyWrapper_cf(Value** arg_list, int count)
{
check_arg_count_with_keys(isPyWrapper, 1, count);
auto val = arg_list[0];
if is_pywrapperbase(val)
{
// ... some cast is expected here ... ;
return &true_value;
}
return &false_value;
}
Solved! Go to Solution.