copy constructor
| 260 | |
| 261 | /// copy constructor |
| 262 | static CompoundObjectPtr copyConstructor( ConstCompoundObjectPtr other ) |
| 263 | { |
| 264 | assert( other ); |
| 265 | CompoundObjectPtr r = new CompoundObject(); |
| 266 | update( *r, other ); |
| 267 | return r; |
| 268 | } |
| 269 | |
| 270 | /// binding for get method |
| 271 | static ObjectPtr get( const CompoundObject &o, const IECore::InternedString &key, ObjectPtr defaultValue ) |