.def( "getChildBoundsProperty",
&OGeomBaseSchema::getChildBoundsProperty,
"Accessing ChildBoundsProperty will create its 3dBox property "
"if needed",
with_custodian_and_ward_postcall<0,1>() )
And I was surprised that the returned OBox3dProperty didn't have any of the expected functions on it.
What secret sauce am I missing?
Also, I noticed that the use of with_custodian_and_ward_postcall is a bit inconsistent between some of the calls to getUserProperties and getArbGeomParams.
Reading about the call, I'm guessing this is only really necessary if a reference is returned, and it really isn't needed on getUserProperties, and getArbGeomParams.
Is this correct?
Lucas