mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031228: It is impossible switch off setting default names for objects inherited TObj_Partition
In order to switch off setting default names for objects of the type TObj_Partition argument "theSetName" defining addition of the default names was added
This commit is contained in:
parent
0784d6e3cb
commit
88610dfc0e
@ -31,8 +31,8 @@ IMPLEMENT_TOBJOCAF_PERSISTENCE(TObj_Partition)
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
TObj_Partition::TObj_Partition (const TDF_Label& theLabel)
|
TObj_Partition::TObj_Partition (const TDF_Label& theLabel, const Standard_Boolean theSetName)
|
||||||
: TObj_Object( theLabel )
|
: TObj_Object( theLabel, theSetName )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,10 +42,10 @@ TObj_Partition::TObj_Partition (const TDF_Label& theLabel)
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Handle(TObj_Partition) TObj_Partition::Create
|
Handle(TObj_Partition) TObj_Partition::Create
|
||||||
(const TDF_Label& theLabel)
|
(const TDF_Label& theLabel, const Standard_Boolean theSetName)
|
||||||
{
|
{
|
||||||
Handle(TObj_Partition) aPartition =
|
Handle(TObj_Partition) aPartition =
|
||||||
new TObj_Partition(theLabel);
|
new TObj_Partition(theLabel, theSetName);
|
||||||
aPartition->SetLastIndex(0);
|
aPartition->SetLastIndex(0);
|
||||||
return aPartition;
|
return aPartition;
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ class TObj_Partition : public TObj_Object
|
|||||||
|
|
||||||
//! Constructor is protected;
|
//! Constructor is protected;
|
||||||
//! static methods are used for creation of this type of objects
|
//! static methods are used for creation of this type of objects
|
||||||
Standard_EXPORT TObj_Partition (const TDF_Label& theLabel);
|
Standard_EXPORT TObj_Partition (const TDF_Label& theLabel, const Standard_Boolean theSetName = Standard_True);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
@ -53,7 +53,7 @@ class TObj_Partition : public TObj_Object
|
|||||||
|
|
||||||
//! Creates a new partition on given label.
|
//! Creates a new partition on given label.
|
||||||
static Standard_EXPORT Handle(TObj_Partition) Create
|
static Standard_EXPORT Handle(TObj_Partition) Create
|
||||||
(const TDF_Label& theLabel);
|
(const TDF_Label& theLabel, const Standard_Boolean theSetName = Standard_True);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user