//============================================================================
SALOMEDSImpl_SObject SALOMEDSImpl_Study::GetSObject(const DF_Label& theLabel)
{
- SALOMEDSImpl_SObject aSO;
- string anEntry = theLabel.Entry();
- if(_mapOfSO.find(anEntry) != _mapOfSO.end())
- aSO = _mapOfSO[anEntry];
- else {
- aSO = SALOMEDSImpl_SObject(theLabel);
- _mapOfSO[anEntry] = aSO;
- }
-
- return aSO;
+ return SALOMEDSImpl_SObject(theLabel);
}
//============================================================================