// 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 _StepData_FieldListN_HeaderFile #define _StepData_FieldListN_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _StepData_Array1OfField_HeaderFile #include #endif #ifndef _StepData_FieldList_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif class Standard_OutOfRange; class StepData_Field; //! Describes a list of fields, in a general way
//! This basic class is for a null size list
//! Subclasses are for 1, N (fixed) or Dynamic sizes
class StepData_FieldListN : public StepData_FieldList { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! Creates a FieldListN of Fields
Standard_EXPORT StepData_FieldListN(const Standard_Integer nb); //! Returns the count of fields. Here, returns starting
Standard_EXPORT virtual Standard_Integer NbFields() const; //! Returns the field n0 between 1 and NbFields (read only)
Standard_EXPORT virtual const StepData_Field& Field(const Standard_Integer num) const; //! Returns the field n0 between 1 and NbFields, in order to
//! modify its content
Standard_EXPORT virtual StepData_Field& CField(const Standard_Integer num) ; Standard_EXPORT virtual void Destroy() ; Standard_EXPORT virtual ~StepData_FieldListN() { Destroy(); } protected: private: StepData_Array1OfField thefields; }; // other Inline functions and methods (like "C++: function call" methods) #endif