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
|
// 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 _IGESDimen_GeneralLabel_HeaderFile
#define _IGESDimen_GeneralLabel_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_IGESDimen_GeneralLabel.hxx>
#include <Handle_IGESDimen_GeneralNote.hxx>
#include <Handle_IGESDimen_HArray1OfLeaderArrow.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Standard_Integer.hxx>
#include <Handle_IGESDimen_LeaderArrow.hxx>
class IGESDimen_GeneralNote;
class IGESDimen_HArray1OfLeaderArrow;
class Standard_OutOfRange;
class IGESDimen_LeaderArrow;
//! defines GeneralLabel, Type <210> Form <0>
//! in package IGESDimen
//! Used for general labeling with leaders
class IGESDimen_GeneralLabel : public IGESData_IGESEntity
{
public:
Standard_EXPORT IGESDimen_GeneralLabel();
//! This method is used to set the fields of the class
//! GeneralLabel
//! - aNote : General Note Entity
//! - someLeaders : Associated Leader Entities
Standard_EXPORT void Init (const Handle(IGESDimen_GeneralNote)& aNote, const Handle(IGESDimen_HArray1OfLeaderArrow)& someLeaders) ;
//! returns General Note Entity
Standard_EXPORT Handle(IGESDimen_GeneralNote) Note() const;
//! returns Number of Leaders
Standard_EXPORT Standard_Integer NbLeaders() const;
//! returns Leader Entity
//! raises exception if Index <= 0 or Index > NbLeaders()
Standard_EXPORT Handle(IGESDimen_LeaderArrow) Leader (const Standard_Integer Index) const;
DEFINE_STANDARD_RTTI(IGESDimen_GeneralLabel)
protected:
private:
Handle(IGESDimen_GeneralNote) theNote;
Handle(IGESDimen_HArray1OfLeaderArrow) theLeaders;
};
#endif // _IGESDimen_GeneralLabel_HeaderFile
|