Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include <StepVisual_TextOrCharacter.ixx>
#include <Interface_Macros.hxx>
StepVisual_TextOrCharacter::StepVisual_TextOrCharacter () { }
Standard_Integer StepVisual_TextOrCharacter::CaseNum(const Handle(Standard_Transient)& ent) const
{
if (ent.IsNull()) return 0;
if (ent->IsKind(STANDARD_TYPE(StepVisual_AnnotationText))) return 1;
if (ent->IsKind(STANDARD_TYPE(StepVisual_CompositeText))) return 2;
if (ent->IsKind(STANDARD_TYPE(StepVisual_TextLiteral))) return 3;
return 0;
}
Handle(StepVisual_AnnotationText) StepVisual_TextOrCharacter::AnnotationText () const
{
return GetCasted(StepVisual_AnnotationText,Value());
}
Handle(StepVisual_CompositeText) StepVisual_TextOrCharacter::CompositeText () const
{
return GetCasted(StepVisual_CompositeText,Value());
}
Handle(StepVisual_TextLiteral) StepVisual_TextOrCharacter::TextLiteral () const
{
return GetCasted(StepVisual_TextLiteral,Value());
}