| 172 | } |
| 173 | |
| 174 | void ObjectVector::hash( MurmurHash &h ) const |
| 175 | { |
| 176 | Object::hash( h ); |
| 177 | for( MemberContainer::const_iterator it=m_members.begin(); it!=m_members.end(); it++ ) |
| 178 | { |
| 179 | if( *it ) |
| 180 | { |
| 181 | (*it)->hash( h ); |
| 182 | } |
| 183 | else |
| 184 | { |
| 185 | h.append( 0 ); |
| 186 | } |
| 187 | } |
| 188 | } |