binding for update method
| 248 | |
| 249 | /// binding for update method |
| 250 | static void update( CompoundObject &x, ConstCompoundObjectPtr y ) |
| 251 | { |
| 252 | assert( y ); |
| 253 | CompoundObject::ObjectMap::const_iterator it = y->members().begin(); |
| 254 | |
| 255 | for (; it != y->members().end(); it++) |
| 256 | { |
| 257 | setItem( x, it->first.value().c_str(), *it->second ); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /// copy constructor |
| 262 | static CompoundObjectPtr copyConstructor( ConstCompoundObjectPtr other ) |
no test coverage detected