1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
//-Copyright: Matra Datavision 1992
//-Version:
//-History:
// Version Date Purpose
// 14/12/92 Creation
//-Language C++2.0
//=======================================================================
// Function : DoubleMapNode
//=======================================================================
PCollection_DoubleMapNode::PCollection_DoubleMapNode
(
const Key &aKey,
const Item &anItem,
const Handle(PCollection_DoubleMapNode) &nextKey,
const Handle(PCollection_DoubleMapNode) &nextItem ) :
myKey(aKey), myItem(anItem), myNextKey(nextKey), myNextItem(nextItem)
{
}
//=======================================================================
// Function : SetNextKey
//=======================================================================
void PCollection_DoubleMapNode::SetNextKey
( const Handle(PCollection_DoubleMapNode) &aNode )
{
myNextKey = aNode;
}
//=======================================================================
// Function : SetNextItem
//=======================================================================
void PCollection_DoubleMapNode::SetNextItem
( const Handle(PCollection_DoubleMapNode) &aNode )
{
myNextItem = aNode;
}
//=======================================================================
// Function : GetKey
//=======================================================================
Key PCollection_DoubleMapNode::GetKey () const
{
return myKey;
}
//=======================================================================
// Function : GetItem
//=======================================================================
Item PCollection_DoubleMapNode::GetItem () const
{
return myItem;
}
//=======================================================================
// Function : NextKey
//=======================================================================
Handle(PCollection_DoubleMapNode)
PCollection_DoubleMapNode::NextKey() const
{
return myNextKey;
}
//=======================================================================
// Function : SetNextItem
//=======================================================================
Handle(PCollection_DoubleMapNode)
PCollection_DoubleMapNode::NextItem() const
{
return myNextItem;
}