0024512: clang++ compiler complains about extra semicolon
[occt.git] / src / NCollection / NCollection_DefineHArray2.hxx
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
8 // under the terms of the GNU Lesser General Public 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_HArray2.hxx by GAWK
17
18 #ifndef NCollection_DefineHArray2_HeaderFile
19 #define NCollection_DefineHArray2_HeaderFile
20
21 #include <Standard_DefineHandle.hxx>
22 #include <NCollection_DefineArray2.hxx>
23 #include <MMgt_TShared.hxx>
24
25 //      Declaration of Array2 class managed by Handle
26
27 #define DEFINE_HARRAY2(HClassName, _Array2Type_)                               \
28 \
29 class HClassName : public _Array2Type_,                                        \
30                    public MMgt_TShared {                                       \
31  public:                                                                       \
32    inline                     HClassName  (const Standard_Integer theRowLower, \
33                                            const Standard_Integer theRowUpper, \
34                                            const Standard_Integer theColLower, \
35                                            const Standard_Integer theColUpper);\
36    inline                     HClassName  (const _Array2Type_&);               \
37    inline const _Array2Type_& Array2      () const;                            \
38    inline _Array2Type_&       ChangeArray2();                                  \
39    DEFINE_STANDARD_RTTI (HClassName)                                           \
40 };                                                                             \
41                                                                                \
42 DEFINE_STANDARD_HANDLE (HClassName, MMgt_TShared)                              \
43                                                                                \
44 inline HClassName::HClassName (const Standard_Integer theRowLow,               \
45                                const Standard_Integer theRowUpp,               \
46                                const Standard_Integer theColLow,               \
47                                const Standard_Integer theColUpp) :             \
48        _Array2Type_ (theRowLow, theRowUpp, theColLow, theColUpp),              \
49        MMgt_TShared() {}                                                       \
50                                                                                \
51 inline HClassName::HClassName (const _Array2Type_& theOther) :                 \
52        _Array2Type_(theOther),                                                 \
53        MMgt_TShared() {}                                                       \
54                                                                                \
55 inline const _Array2Type_& HClassName::Array2 () const                         \
56 { return * (const _Array2Type_ *) this; }                                      \
57                                                                                \
58 inline _Array2Type_& HClassName::ChangeArray2 ()                               \
59 { return * (_Array2Type_ *) this; }                                            \
60
61 #define IMPLEMENT_HARRAY2(HClassName)                                          \
62 IMPLEMENT_STANDARD_HANDLE  (HClassName, MMgt_TShared)                          \
63 IMPLEMENT_STANDARD_RTTIEXT (HClassName, MMgt_TShared)
64
65 #endif