Added public method returning Backup for attribute
//! Backup() method.
Standard_Boolean IsBackuped() const;
+ //! Returns Backup attribute for current state of attribute
+ Standard_EXPORT Handle(TDF_Attribute) GetBackup() const;
+
+
//! Copies the attribute contents into a new other
//! attribute. It is used by Backup().
Standard_EXPORT virtual Handle(TDF_Attribute) BackupCopy() const;
inline Standard_OStream& operator << (Standard_OStream& anOS,
const Handle(TDF_Attribute)& anAtt)
{ return anAtt->Dump(anOS); }
+
+
+inline Handle(TDF_Attribute) TDF_Attribute::GetBackup() const
+{
+ return myBackup;
+}
\ No newline at end of file