Open CASCADE Technology  7.0.0
Macros
NCollection_DefineHSequence.hxx File Reference
#include <Standard_Type.hxx>
#include <NCollection_DefineSequence.hxx>
#include <MMgt_TShared.hxx>

Macros

#define DEFINE_HSEQUENCE(HClassName, _SequenceType_)
 
#define IMPLEMENT_HSEQUENCE(HClassName)
 

Macro Definition Documentation

#define DEFINE_HSEQUENCE (   HClassName,
  _SequenceType_ 
)
Value:
class HClassName : public _SequenceType_, public MMgt_TShared { \
public: \
DEFINE_STANDARD_ALLOC \
DEFINE_NCOLLECTION_ALLOC \
HClassName () {} \
HClassName (const _SequenceType_& theOther) : _SequenceType_(theOther) {} \
const _SequenceType_& Sequence () const { return *this; } \
void Append (const _SequenceType_::value_type& theItem) { \
_SequenceType_::Append (theItem); \
} \
void Append (_SequenceType_& theSequence) { \
_SequenceType_::Append (theSequence); \
} \
_SequenceType_& ChangeSequence () { return *this; } \
template <class T> \
void Append (const Handle(T)& theOther, \
typename std::enable_if<std::is_base_of<HClassName, T>::value>::type * = 0) { \
_SequenceType_::Append (theOther->ChangeSequence()); \
} \
DEFINE_STANDARD_RTTI_INLINE(HClassName,MMgt_TShared) \
}; \
#define Handle(Class)
Define Handle() macro.
Definition: Standard_Handle.hxx:403
DEFINE_STANDARD_HANDLE(StepVisual_TessellatedCurveSet, StepVisual_TessellatedItem)
Intermediate class between Standard_Transient and descendants. The abstract class TShared is the root...
Definition: MMgt_TShared.hxx:51
#define IMPLEMENT_HSEQUENCE (   HClassName)