// Created on: 1999-06-25 // Created by: Sergey RUIN // Copyright (c) 1999-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 IMPLEMENT_STANDARD_RTTIEXT(TDataStd_Directory,TDF_Attribute) //======================================================================= //function : Find //purpose : //======================================================================= Standard_Boolean TDataStd_Directory::Find (const TDF_Label& current, Handle(TDataStd_Directory)& D) { TDF_Label L = current; Handle(TDataStd_Directory) dir; if (L.IsNull()) return Standard_False; for(;;) { if(L.FindAttribute(TDataStd_Directory::GetID(), dir)) break; L = L.Father(); if (L.IsNull()) break; } if (!dir.IsNull()) { D = dir; return Standard_True; } return Standard_False; } //======================================================================= //function : GetID //purpose : //======================================================================= const Standard_GUID& TDataStd_Directory::GetID() { static Standard_GUID TDataStd_DirectoryID("2a96b61f-ec8b-11d0-bee7-080009dc3333"); return TDataStd_DirectoryID; } //======================================================================= //function : New //purpose : //======================================================================= Handle(TDataStd_Directory) TDataStd_Directory::New (const TDF_Label& L) { if (L.HasAttribute()) { throw Standard_DomainError("TDataStd_Directory::New : not an empty label"); } Handle(TDataStd_Directory) A = new TDataStd_Directory (); L.AddAttribute(A); TDF_TagSource::Set(L); return A; } //======================================================================= //function : TDataStd_AddDirectory //purpose : //======================================================================= Handle(TDataStd_Directory) TDataStd_Directory::AddDirectory(const Handle(TDataStd_Directory)& dir) { TDF_Label newLabel = TDF_TagSource::NewChild ( dir->Label() ); Handle(TDataStd_Directory) A = TDataStd_Directory::New (newLabel ); return A; } //======================================================================= //function : TDataStd_MakeObjectLabel //purpose : //======================================================================= TDF_Label TDataStd_Directory::MakeObjectLabel(const Handle(TDataStd_Directory)& dir) { return TDF_TagSource::NewChild ( dir->Label() ); } //======================================================================= //function : TDataStd_Directory //purpose : //======================================================================= TDataStd_Directory::TDataStd_Directory() { } //======================================================================= //function : ID //purpose : //======================================================================= const Standard_GUID& TDataStd_Directory::ID() const { return GetID(); } //======================================================================= //function : NewEmpty //purpose : //======================================================================= Handle(TDF_Attribute) TDataStd_Directory::NewEmpty () const { return new TDataStd_Directory(); } //======================================================================= //function : Restore //purpose : //======================================================================= void TDataStd_Directory::Restore(const Handle(TDF_Attribute)&) { } //======================================================================= //function : Paste //purpose : //======================================================================= void TDataStd_Directory::Paste (const Handle(TDF_Attribute)&, const Handle(TDF_RelocationTable)& ) const { } //======================================================================= //function : References //purpose : //======================================================================= void TDataStd_Directory::References (const Handle(TDF_DataSet)&) const { } //======================================================================= //function : Dump //purpose : //======================================================================= Standard_OStream& TDataStd_Directory::Dump (Standard_OStream& anOS) const { anOS << "Directory"; return anOS; } //======================================================================= //function : DumpJson //purpose : //======================================================================= void TDataStd_Directory::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const { OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream) OCCT_DUMP_BASE_CLASS (theOStream, theDepth, TDF_Attribute) }