#include #include #include #include IGESSelect_SelectName::IGESSelect_SelectName () { } void IGESSelect_SelectName::SetName (const Handle(TCollection_HAsciiString)& levnum) { thename = levnum; } Handle(TCollection_HAsciiString) IGESSelect_SelectName::Name () const { return thename; } Standard_Boolean IGESSelect_SelectName::Sort (const Standard_Integer rank, const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const { DeclareAndCast(IGESData_IGESEntity,igesent,ent); if (igesent.IsNull()) return Standard_False; if (!igesent->HasName()) return Standard_False; if (thename.IsNull()) return Standard_False; Handle(TCollection_HAsciiString) name = igesent->NameValue(); // cout<<"SelectName:"<ToCString()<<",with:"<ToCString()<<",IsSameString="<IsSameString (name,Standard_False)<Length(); Standard_Integer nb1 = name->Length(); Standard_Integer nbf = (nb1 <= nb0 ? nb1 : nb0); Standard_Integer nbt = (nb1 >= nb0 ? nb1 : nb0); Standard_Integer i; // svv Jan11 2000 : porting on DEC for (i = 1; i <= nbf; i ++) { if (name->Value(i) != thename->Value(i)) return Standard_False; } if (nb0 > nb1) name = thename; for (i = nbf+1; i <= nbt; i ++) { if (name->Value(i) != ' ') return Standard_False; } return Standard_True; } TCollection_AsciiString IGESSelect_SelectName::ExtractLabel () const { char labl [50]; if (!thename.IsNull()) { sprintf (labl,"IGES Entity, Name : %s",thename->ToCString()); return TCollection_AsciiString(labl); } else return TCollection_AsciiString ("IGES Entity, Name : (undefined)"); }