mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-01 08:36:43 +08:00
37 lines
897 B
C++
Executable File
37 lines
897 B
C++
Executable File
//--------------------------------------------------------------------
|
|
//
|
|
// File Name : IGESGraph_HighLight.cxx
|
|
// Date :
|
|
// Author : CKY / Contract Toubro-Larsen
|
|
// Copyright : MATRA-DATAVISION 1993
|
|
//
|
|
//--------------------------------------------------------------------
|
|
|
|
#include <IGESGraph_HighLight.ixx>
|
|
|
|
IGESGraph_HighLight::IGESGraph_HighLight () { }
|
|
|
|
|
|
void IGESGraph_HighLight::Init
|
|
(const Standard_Integer nbProps, const Standard_Integer aHighLightStatus)
|
|
{
|
|
theNbPropertyValues = nbProps;
|
|
theHighLight = aHighLightStatus;
|
|
InitTypeAndForm(406,20);
|
|
}
|
|
|
|
Standard_Integer IGESGraph_HighLight::NbPropertyValues () const
|
|
{
|
|
return theNbPropertyValues;
|
|
}
|
|
|
|
Standard_Integer IGESGraph_HighLight::HighLightStatus () const
|
|
{
|
|
return theHighLight;
|
|
}
|
|
|
|
Standard_Boolean IGESGraph_HighLight::IsHighLighted () const
|
|
{
|
|
return (theHighLight != 0);
|
|
}
|