Open CASCADE Technology  6.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Macros
NCollection_DefineHArray1.hxx File Reference
#include <Standard_DefineHandle.hxx>
#include <NCollection_DefineArray1.hxx>
#include <MMgt_TShared.hxx>

Macros

#define DEFINE_HARRAY1(HClassName, _Array1Type_)
 
#define IMPLEMENT_HARRAY1(HClassName)
 

Macro Definition Documentation

#define DEFINE_HARRAY1 (   HClassName,
  _Array1Type_ 
)
Value:
\
class HClassName : public _Array1Type_, \
public MMgt_TShared { \
public: \
inline HClassName (const Standard_Integer theLower, \
const Standard_Integer theUpper); \
inline HClassName (const _Array1Type_&); \
inline const _Array1Type_& Array1 () const; \
inline _Array1Type_& ChangeArray1 (); \
DEFINE_STANDARD_RTTI (HClassName) \
}; \
\
inline HClassName::HClassName (const Standard_Integer theLower, \
const Standard_Integer theUpper) : \
_Array1Type_ (theLower,theUpper), \
MMgt_TShared() {} \
\
inline HClassName::HClassName (const _Array1Type_& theOther) : \
_Array1Type_(theOther), \
MMgt_TShared() {} \
\
inline const _Array1Type_& HClassName::Array1 () const \
{ return * (const _Array1Type_ *) this; } \
\
inline _Array1Type_& HClassName::ChangeArray1 () \
{ return * (_Array1Type_ *) this; } \
The abstract class TShared is the root class of managed objects. TShared objects are managed by a...
Definition: MMgt_TShared.hxx:44
#define DEFINE_STANDARD_HANDLE(C1, C2)
Definition: Standard_DefineHandle.hxx:81
int Standard_Integer
Definition: Standard_TypeDef.hxx:59
#define DEFINE_STANDARD_RTTI(C1)
Definition: Standard_DefineHandle.hxx:93
#define IMPLEMENT_HARRAY1 (   HClassName)
Value:
The abstract class TShared is the root class of managed objects. TShared objects are managed by a...
Definition: MMgt_TShared.hxx:44
#define IMPLEMENT_STANDARD_RTTIEXT(C1, C2)
Definition: Standard_DefineHandle.hxx:127
#define IMPLEMENT_STANDARD_HANDLE(C1, C2)
Definition: Standard_DefineHandle.hxx:83