0030131: Foundation Classes - support of Linear builder for 2D BVH trees
[occt.git] / src / NCollection / NCollection_DefineHSequence.hxx
CommitLineData
b311480e 1// Created on: 2001-01-29
2// Created by: Alexander GRIGORIEV
973c2be1 3// Copyright (c) 2001-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Automatically created from NCollection_HSequence.hxx by GAWK
7fd59977 17
18#ifndef NCollection_DefineHSequence_HeaderFile
19#define NCollection_DefineHSequence_HeaderFile
20
ec357c5c 21#include <Standard_Type.hxx>
7fd59977 22#include <NCollection_DefineSequence.hxx>
25e59720 23#include <Standard_Transient.hxx>
7fd59977 24
25// Declaration of Sequence class managed by Handle
26
27#define DEFINE_HSEQUENCE(HClassName, _SequenceType_) \
25e59720 28class HClassName : public _SequenceType_, public Standard_Transient { \
7fd59977 29 public: \
ddf2fe8e 30 DEFINE_STANDARD_ALLOC \
31 DEFINE_NCOLLECTION_ALLOC \
e3a6386d 32 HClassName () {} \
33 HClassName (const _SequenceType_& theOther) : _SequenceType_(theOther) {} \
34 const _SequenceType_& Sequence () const { return *this; } \
35 void Append (const _SequenceType_::value_type& theItem) { \
36 _SequenceType_::Append (theItem); \
37 } \
38 void Append (_SequenceType_& theSequence) { \
39 _SequenceType_::Append (theSequence); \
40 } \
41 _SequenceType_& ChangeSequence () { return *this; } \
543a9964 42 template <class T> \
43 void Append (const Handle(T)& theOther, \
71c810df 44 typename opencascade::std::enable_if<opencascade::std::is_base_of<HClassName, T>::value>::type * = 0) { \
e3a6386d 45 _SequenceType_::Append (theOther->ChangeSequence()); \
46 } \
25e59720 47 DEFINE_STANDARD_RTTI_INLINE(HClassName,Standard_Transient) \
e7195ab4 48}; \
25e59720 49DEFINE_STANDARD_HANDLE (HClassName, Standard_Transient)
7fd59977 50
ec357c5c 51#define IMPLEMENT_HSEQUENCE(HClassName)
52
53
7fd59977 54
55#endif