0024971: Incomplete interface of NCollection classes
[occt.git] / src / NCollection / NCollection_DefineHArray1.hxx
... / ...
CommitLineData
1// Created on: 2002-04-29
2// Created by: Alexander KARTOMIN (akm)
3// Copyright (c) 2002-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
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
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.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16// Automatically created from NCollection_HArray1.hxx by GAWK
17
18#ifndef NCollection_DefineHArray1_HeaderFile
19#define NCollection_DefineHArray1_HeaderFile
20
21#include <Standard_DefineHandle.hxx>
22#include <NCollection_DefineArray1.hxx>
23#include <MMgt_TShared.hxx>
24
25// Declaration of Array1 class managed by Handle
26
27#define DEFINE_HARRAY1(HClassName, _Array1Type_) \
28class HClassName : public _Array1Type_, public MMgt_TShared { \
29 public: \
30 DEFINE_STANDARD_ALLOC \
31 DEFINE_NCOLLECTION_ALLOC \
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; } \
42 DEFINE_STANDARD_RTTI (HClassName) \
43}; \
44DEFINE_STANDARD_HANDLE (HClassName, MMgt_TShared)
45
46#define IMPLEMENT_HARRAY1(HClassName) \
47IMPLEMENT_STANDARD_HANDLE (HClassName, MMgt_TShared) \
48IMPLEMENT_STANDARD_RTTIEXT (HClassName, MMgt_TShared)
49
50#endif