mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
#1692 get_info_2() logical
This commit is contained in:
@@ -737,6 +737,10 @@ static IfcUtil::ArgumentType helper_fn_attribute_type(const IfcUtil::IfcBaseClas
|
|||||||
bool v = arg;
|
bool v = arg;
|
||||||
return pythonize(v);
|
return pythonize(v);
|
||||||
break; }
|
break; }
|
||||||
|
case IfcUtil::Argument_LOGICAL: {
|
||||||
|
boost::logic::tribool v = arg;
|
||||||
|
return pythonize(v);
|
||||||
|
break; }
|
||||||
case IfcUtil::Argument_DOUBLE: {
|
case IfcUtil::Argument_DOUBLE: {
|
||||||
double v = arg;
|
double v = arg;
|
||||||
return pythonize(v);
|
return pythonize(v);
|
||||||
|
|||||||
Reference in New Issue
Block a user