// 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_FieldList_HeaderFile #define _StepData_FieldList_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif class Standard_OutOfRange; class StepData_Field; class Interface_EntityIterator; //! 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_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 FieldList of 0 Field
Standard_EXPORT StepData_FieldList(); //! Returns the count of fields. Here, returns 0
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) ; //! Fills an iterator with the entities shared by
Standard_EXPORT void FillShared(Interface_EntityIterator& iter) const; protected: private: }; // other Inline functions and methods (like "C++: function call" methods) #endif