0029151: GCC 7.1 warnings "this statement may fall through" [-Wimplicit-fallthrough=]
[occt.git] / src / NCollection / NCollection_DefineHArray1.hxx
CommitLineData
b311480e 1// Created on: 2002-04-29
2// Created by: Alexander KARTOMIN (akm)
973c2be1 3// Copyright (c) 2002-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_HArray1.hxx by GAWK
7fd59977 17
18#ifndef NCollection_DefineHArray1_HeaderFile
19#define NCollection_DefineHArray1_HeaderFile
20
ec357c5c 21#include <Standard_Type.hxx>
7fd59977 22#include <NCollection_DefineArray1.hxx>
25e59720 23#include <Standard_Transient.hxx>
7fd59977 24
25// Declaration of Array1 class managed by Handle
26
27#define DEFINE_HARRAY1(HClassName, _Array1Type_) \
25e59720 28class HClassName : public _Array1Type_, public Standard_Transient { \
7fd59977 29 public: \
ddf2fe8e 30 DEFINE_STANDARD_ALLOC \
31 DEFINE_NCOLLECTION_ALLOC \
e3a6386d 32 HClassName (const Standard_Integer theLower, \
33 const Standard_Integer theUpper) : \
34 _Array1Type_ (theLower,theUpper) {} \
35 HClassName (const Standard_Integer theLower, \
36 const Standard_Integer theUpper, \
37 const _Array1Type_::value_type& theValue) : \
38 _Array1Type_ (theLower,theUpper) { Init (theValue); } \
39 HClassName (const _Array1Type_& theOther) : _Array1Type_(theOther) {} \
40 const _Array1Type_& Array1 () const { return *this; } \
41 _Array1Type_& ChangeArray1 () { return *this; } \
25e59720 42 DEFINE_STANDARD_RTTI_INLINE(HClassName,Standard_Transient) \
7fd59977 43}; \
25e59720 44DEFINE_STANDARD_HANDLE (HClassName, Standard_Transient)
7fd59977 45
ec357c5c 46#define IMPLEMENT_HARRAY1(HClassName)
47
48
7fd59977 49
50#endif