// Created on: 1997-07-31 // Created by: Denis PASCAL // Copyright (c) 1997-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include #include #include #include #include #include #include IMPLEMENT_STANDARD_RTTIEXT(TDataStd_Name,TDF_Attribute) //======================================================================= //function : GetID //purpose : //======================================================================= const Standard_GUID& TDataStd_Name::GetID () { static Standard_GUID TDataStd_NameID("2a96b608-ec8b-11d0-bee7-080009dc3333"); return TDataStd_NameID; } //======================================================================= //function : Set //purpose : //======================================================================= Handle(TDataStd_Name) TDataStd_Name::Set (const TDF_Label& label, const TCollection_ExtendedString& theString) { Handle(TDataStd_Name) N; if (!label.FindAttribute(TDataStd_Name::GetID(), N)) { N = new TDataStd_Name (); N->SetID(GetID()); label.AddAttribute(N); } N->Set(theString); return N; } //======================================================================= //function : Set //purpose : Set user defined attribute //======================================================================= Handle(TDataStd_Name) TDataStd_Name::Set (const TDF_Label& L, const Standard_GUID& theGuid, const TCollection_ExtendedString& theString) { Handle(TDataStd_Name) N; if (!L.FindAttribute(theGuid, N)) { N = new TDataStd_Name (); N->SetID(theGuid); L.AddAttribute(N); } N->Set (theString); return N; } //======================================================================= //function : TDataStd_Name //purpose : Empty Constructor //======================================================================= TDataStd_Name::TDataStd_Name (): myID (GetID()) { } //======================================================================= //function : Set //purpose : //======================================================================= void TDataStd_Name::Set (const TCollection_ExtendedString& S) { if(myString == S) return; Backup(); myString = S; } //======================================================================= //function : Get //purpose : //======================================================================= const TCollection_ExtendedString& TDataStd_Name::Get () const { return myString; } //======================================================================= //function : SetID //purpose : //======================================================================= void TDataStd_Name::SetID( const Standard_GUID& theGuid) { if(myID == theGuid) return; Backup(); myID = theGuid; } // TDF_Attribute methods //======================================================================= //function : ID //purpose : //======================================================================= const Standard_GUID& TDataStd_Name::ID () const { return myID; } //======================================================================= //function : NewEmpty //purpose : //======================================================================= Handle(TDF_Attribute) TDataStd_Name::NewEmpty () const { Handle(TDataStd_Name) Att = new TDataStd_Name(); Att->SetID(myID); return Att; } //======================================================================= //function : Restore //purpose : //======================================================================= void TDataStd_Name::Restore(const Handle(TDF_Attribute)& with) { Handle(TDataStd_Name) anAtt = Handle(TDataStd_Name)::DownCast (with); myString = anAtt->Get(); myID = anAtt->ID(); } //======================================================================= //function : Paste //purpose : //======================================================================= void TDataStd_Name::Paste (const Handle(TDF_Attribute)& into, const Handle(TDF_RelocationTable)&/* RT*/) const { Handle(TDataStd_Name) anAtt = Handle(TDataStd_Name)::DownCast (into); anAtt->Set (myString); anAtt->SetID(myID); } //======================================================================= //function : Dump //purpose : //======================================================================= Standard_OStream& TDataStd_Name::Dump (Standard_OStream& anOS) const { TDF_Attribute::Dump(anOS); anOS << " Name=|"<