OCC22540 Regression: Exception during building of patch by GeomPlate
[occt.git] / src / NCollection / NCollection_DefineSequence.hxx
1 // File:        NCollection_DefineSequence.hxx
2 // Created:     28.03.02 20:41:43
3 // Author:      Alexander GRIGORIEV
4 //            Automatically created from NCollection_Sequence.hxx by GAWK
5 // Copyright:   Open Cascade 2002
6 //           
7 // Purpose:     Definition of a sequence of elements indexed by
8 //              an Integer in range of 1..n
9 //              
10
11
12 #ifndef NCollection_DefineSequence_HeaderFile
13 #define NCollection_DefineSequence_HeaderFile
14
15 #include <NCollection_DefineBaseCollection.hxx>
16 #include <NCollection_Sequence.hxx>
17
18 #ifdef WNT
19 // Disable the warning "operator new unmatched by delete"
20 #pragma warning (disable:4291)
21 #endif
22
23 // **************************************** Template for Sequence class ********
24
25 #define DEFINE_SEQUENCE(_ClassName_, _BaseCollection_, TheItemType)            \
26         typedef NCollection_Sequence<TheItemType > _ClassName_;
27
28 #endif