mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-11 00:37:04 +08:00
56 lines
1.9 KiB
C++
Executable File
56 lines
1.9 KiB
C++
Executable File
#include <StepData_ReadWriteModule.ixx>
|
|
#include <StepData_StepReaderData.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
|
|
|
|
|
|
Standard_Integer StepData_ReadWriteModule::CaseNum
|
|
(const Handle(Interface_FileReaderData)& data,
|
|
const Standard_Integer num) const
|
|
{
|
|
DeclareAndCast(StepData_StepReaderData,stepdat,data);
|
|
if (stepdat.IsNull()) return 0;
|
|
if (stepdat->IsComplex(num)) {
|
|
TColStd_SequenceOfAsciiString types;
|
|
stepdat->ComplexType (num,types);
|
|
if (types.IsEmpty()) return 0;
|
|
if (types.Length() == 1) return CaseStep (types.Value(1));
|
|
else return CaseStep (types);
|
|
}
|
|
return CaseStep (stepdat->RecordType(num));
|
|
}
|
|
|
|
Standard_Integer StepData_ReadWriteModule::CaseStep
|
|
(const TColStd_SequenceOfAsciiString& types) const
|
|
{ return 0; } // par defaut
|
|
|
|
Standard_Boolean StepData_ReadWriteModule::IsComplex
|
|
(const Standard_Integer CN) const
|
|
{ return Standard_False; } // par defaut
|
|
|
|
TCollection_AsciiString StepData_ReadWriteModule::ShortType
|
|
(const Standard_Integer ) const
|
|
{ return TCollection_AsciiString(""); } // par defaut vide
|
|
|
|
Standard_Boolean StepData_ReadWriteModule::ComplexType
|
|
(const Standard_Integer ,
|
|
TColStd_SequenceOfAsciiString& ) const
|
|
{ return Standard_False; }
|
|
|
|
|
|
//=======================================================================
|
|
//function : Read
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepData_ReadWriteModule::Read(const Standard_Integer CN,
|
|
const Handle(Interface_FileReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(Standard_Transient)& ent) const
|
|
{
|
|
DeclareAndCast(StepData_StepReaderData,stepdat,data);
|
|
if (stepdat.IsNull()) return;
|
|
ReadStep (CN,stepdat,num,ach,ent);
|
|
}
|