mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-15 12:07:41 +08:00
22 lines
602 B
Plaintext
Executable File
22 lines
602 B
Plaintext
Executable File
|
|
//=======================================================================
|
|
//function : SetReadVisible
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void IGESControl_Reader::SetReadVisible (const Standard_Boolean ReadRoot)
|
|
{
|
|
theReadOnlyVisible = ReadRoot;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GetReadVisible
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Boolean IGESControl_Reader::GetReadVisible ()const
|
|
{
|
|
return theReadOnlyVisible;
|
|
}
|