// File: SMDS_MeshElementMapHasher.lxx // Created: Wed Jan 23 14:07:00 2002 // Author: Jean-Michel BOULCOURT // #include "SMDS_MeshElement.hxx" //======================================================================= //function : HashCode //purpose : //======================================================================= inline Standard_Integer SMDS_MeshElementMapHasher::HashCode (const Handle(SMDS_MeshElement)& ME, const Standard_Integer Upper) { return ME->HashCode(Upper); } //======================================================================= //function : IsEqual //purpose : //======================================================================= inline Standard_Boolean SMDS_MeshElementMapHasher::IsEqual (const Handle(SMDS_MeshElement)& ME1, const Handle(SMDS_MeshElement)& ME2) { return ME1->IsSame(ME2); }