mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-25 12:55:50 +03:00
NCollection_BaseCollection class, relevant header files, and macro DEFINE_BASECOLLECTION removed. Hence methods Assign() from other compatible (via inheritance of BaseCollection) collections are not available any more, as well as base Iterator class. All methods of Iterator classes are made non-virtual, allowing their inline expansion for better performance. OCCT-specific operators new and delete added to collection classes and removed from iterator classes.
169 lines
5.0 KiB
C++
169 lines
5.0 KiB
C++
// Created on: 2004-11-23
|
|
// Created by: Pavel TELKOV
|
|
// Copyright (c) 2004-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.
|
|
|
|
// The original implementation Copyright: (C) RINA S.p.A
|
|
|
|
#include <TObj_TNameContainer.hxx>
|
|
#include <Standard_GUID.hxx>
|
|
|
|
IMPLEMENT_STANDARD_HANDLE(TObj_TNameContainer,TDF_Attribute)
|
|
IMPLEMENT_STANDARD_RTTIEXT(TObj_TNameContainer,TDF_Attribute)
|
|
|
|
//=======================================================================
|
|
//function : TObj_TNameContainer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TObj_TNameContainer::TObj_TNameContainer()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetID
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& TObj_TNameContainer::GetID()
|
|
{
|
|
static Standard_GUID theID ("3bbefb47-e618-11d4-ba38-0060b0ee18ea");
|
|
return theID;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ID
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Standard_GUID& TObj_TNameContainer::ID() const
|
|
{
|
|
return GetID();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Set
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TObj_TNameContainer) TObj_TNameContainer::Set(const TDF_Label& theLabel)
|
|
{
|
|
Handle(TObj_TNameContainer) A;
|
|
if (!theLabel.FindAttribute(TObj_TNameContainer::GetID(), A))
|
|
{
|
|
A = new TObj_TNameContainer;
|
|
theLabel.AddAttribute(A);
|
|
}
|
|
return A;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RecordName
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TObj_TNameContainer::RecordName(const Handle(TCollection_HExtendedString)& theName,
|
|
const TDF_Label& theLabel)
|
|
{
|
|
if(!IsRegistered(theName))
|
|
{
|
|
Backup();
|
|
myMap.Bind(new TCollection_HExtendedString(theName->String()),theLabel);
|
|
}
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveName
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TObj_TNameContainer::RemoveName(const Handle(TCollection_HExtendedString)& theName)
|
|
{
|
|
if(IsRegistered(theName))
|
|
{
|
|
Backup();
|
|
myMap.UnBind(theName);
|
|
}
|
|
}
|
|
|
|
void TObj_TNameContainer::Clear()
|
|
{
|
|
Backup();
|
|
myMap.Clear();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : CheckName
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean TObj_TNameContainer::IsRegistered(const Handle(TCollection_HExtendedString)& theName) const
|
|
{
|
|
return myMap.IsBound(theName);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TDF_Attribute) TObj_TNameContainer::NewEmpty () const
|
|
{
|
|
return new TObj_TNameContainer();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Restore
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TObj_TNameContainer::Restore(const Handle(TDF_Attribute)& theWith)
|
|
{
|
|
Handle(TObj_TNameContainer) R = Handle(TObj_TNameContainer)::DownCast (theWith);
|
|
|
|
myMap = R->Get();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TObj_TNameContainer::Paste (const Handle(TDF_Attribute)& theInto,
|
|
const Handle(TDF_RelocationTable)& /* RT */) const
|
|
{
|
|
Handle(TObj_TNameContainer) R = Handle(TObj_TNameContainer)::DownCast (theInto);
|
|
R->Set(myMap);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Get
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TObj_DataMapOfNameLabel& TObj_TNameContainer::Get() const
|
|
{
|
|
return myMap;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Set
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void TObj_TNameContainer::Set(const TObj_DataMapOfNameLabel& theMap)
|
|
{
|
|
Backup();
|
|
myMap.Assign (theMap);
|
|
}
|