blob: 2454e5f5ba40158b6c0fcb22fc245048f5adff8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// File: BinMXCAFDoc_LocationDriver.lxx
// Created: Tue Feb 8 14:33:30 2011
// Author: Oleg AGASHIN
// <oan@opencascade.com>
//=======================================================================
//function : SetSharedLocations
//purpose :
//=======================================================================
inline void BinMXCAFDoc_LocationDriver::SetSharedLocations(const BinTools_LocationSetPtr& theLocations)
{
if( myLocations != theLocations )
{
myLocations = theLocations;
}
}
|