1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _StepShape_CsgPrimitive_HeaderFile
#define _StepShape_CsgPrimitive_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <StepData_SelectType.hxx>
#include <Standard_Integer.hxx>
#include <Handle_Standard_Transient.hxx>
#include <Handle_StepShape_Sphere.hxx>
#include <Handle_StepShape_Block.hxx>
#include <Handle_StepShape_RightAngularWedge.hxx>
#include <Handle_StepShape_Torus.hxx>
#include <Handle_StepShape_RightCircularCone.hxx>
#include <Handle_StepShape_RightCircularCylinder.hxx>
class Standard_Transient;
class StepShape_Sphere;
class StepShape_Block;
class StepShape_RightAngularWedge;
class StepShape_Torus;
class StepShape_RightCircularCone;
class StepShape_RightCircularCylinder;
class StepShape_CsgPrimitive : public StepData_SelectType
{
public:
DEFINE_STANDARD_ALLOC
//! Returns a CsgPrimitive SelectType
Standard_EXPORT StepShape_CsgPrimitive();
//! Recognizes a CsgPrimitive Kind Entity that is :
//! 1 -> Sphere
//! 2 -> Block
//! 3 -> RightAngularWedge
//! 4 -> Torus
//! 5 -> RightCircularCone
//! 6 -> RightCircularCylinder
//! 0 else
Standard_EXPORT Standard_Integer CaseNum (const Handle(Standard_Transient)& ent) const;
//! returns Value as a Sphere (Null if another type)
Standard_EXPORT Handle(StepShape_Sphere) Sphere() const;
//! returns Value as a Block (Null if another type)
Standard_EXPORT Handle(StepShape_Block) Block() const;
//! returns Value as a RightAngularWedge (Null if another type)
Standard_EXPORT Handle(StepShape_RightAngularWedge) RightAngularWedge() const;
//! returns Value as a Torus (Null if another type)
Standard_EXPORT Handle(StepShape_Torus) Torus() const;
//! returns Value as a RightCircularCone (Null if another type)
Standard_EXPORT Handle(StepShape_RightCircularCone) RightCircularCone() const;
//! returns Value as a RightCircularCylinder (Null if another type)
Standard_EXPORT Handle(StepShape_RightCircularCylinder) RightCircularCylinder() const;
protected:
private:
};
#endif // _StepShape_CsgPrimitive_HeaderFile
|