1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-16 10:54:53 +03:00
occt/src/Storage/Storage_InternalData.cxx
2012-03-05 19:23:40 +04:00

16 lines
253 B
C++
Executable File

#include <Storage_InternalData.ixx>
Storage_InternalData::Storage_InternalData() : myObjId(1), myTypeId(1)
{
}
void Storage_InternalData::Clear()
{
myTypeId = 1;
myObjId = 1;
myReadArray.Nullify();
myPtoA.Clear();
myTypeBinding.Clear();
}