| 69 | } |
| 70 | |
| 71 | void BlindDataHolder::copyFrom( const Object *other, CopyContext *context ) |
| 72 | { |
| 73 | Object::copyFrom( other, context ); |
| 74 | const BlindDataHolder *tOther = static_cast<const BlindDataHolder *>( other ); |
| 75 | m_data = context->copy<CompoundData>( tOther->m_data.get() ); |
| 76 | } |
| 77 | |
| 78 | void BlindDataHolder::save( SaveContext *context ) const |
| 79 | { |