blob: b4be5bb72ab0f6247501041e145d3851d3cf0f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <StepAP214_GroupItem.ixx>
#include <Interface_Macros.hxx>
StepAP214_GroupItem::StepAP214_GroupItem () { }
Standard_Integer StepAP214_GroupItem::CaseNum(const Handle(Standard_Transient)& ent) const
{
if (ent.IsNull()) return 0;
if (ent->IsKind(STANDARD_TYPE(StepGeom_GeometricRepresentationItem))) return 1;
return 0;
}
Handle(StepGeom_GeometricRepresentationItem) StepAP214_GroupItem::GeometricRepresentationItem() const
{
return GetCasted(StepGeom_GeometricRepresentationItem,Value());
}
|