// File: XmlMDF_ReferenceDriver.cxx // Created: 04.09.01 14:47:31 // Author: Julia DOROVSKIKH // Copyright: Open Cascade 2001 // History: AGV 150202: Changed prototype XmlObjMgt::SetStringValue() #include #include #include #include //======================================================================= //function : XmlMDF_ReferenceDriver //purpose : Constructor //======================================================================= XmlMDF_ReferenceDriver::XmlMDF_ReferenceDriver (const Handle(CDM_MessageDriver)& theMsgDriver) : XmlMDF_ADriver (theMsgDriver, NULL) {} //======================================================================= //function : NewEmpty //purpose : //======================================================================= Handle(TDF_Attribute) XmlMDF_ReferenceDriver::NewEmpty() const { return (new TDF_Reference()); } //======================================================================= //function : Paste //purpose : persistent -> transient (retrieve) //======================================================================= Standard_Boolean XmlMDF_ReferenceDriver::Paste (const XmlObjMgt_Persistent& theSource, const Handle(TDF_Attribute)& theTarget, XmlObjMgt_RRelocationTable& ) const { XmlObjMgt_DOMString anXPath = XmlObjMgt::GetStringValue(theSource); if (anXPath == NULL) { WriteMessage ("Cannot retrieve reference string from element"); return Standard_False; } TCollection_AsciiString anEntry; if (XmlObjMgt::GetTagEntryString (anXPath, anEntry) == Standard_False) { TCollection_ExtendedString aMessage = TCollection_ExtendedString ("Cannot retrieve reference from \"") + anXPath + '\"'; WriteMessage (aMessage); return Standard_False; } Handle(TDF_Reference) aRef = Handle(TDF_Reference)::DownCast(theTarget); // find label by entry TDF_Label tLab; // Null label. if (anEntry.Length() > 0) { TDF_Tool::Label(aRef->Label().Data(), anEntry, tLab, Standard_True); } // set referenced label aRef->Set(tLab); return Standard_True; } //======================================================================= //function : Paste //purpose : transient -> persistent (store) //