mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-16 21:30:14 +08:00
24 lines
779 B
C++
Executable File
24 lines
779 B
C++
Executable File
// File: NCollection_DefineSequence.hxx
|
|
// Created: 28.03.02 20:41:43
|
|
// Author: Alexander GRIGORIEV
|
|
// Automatically created from NCollection_Sequence.hxx by GAWK
|
|
// Copyright: Open Cascade 2002
|
|
//
|
|
// Purpose: Definition of a sequence of elements indexed by
|
|
// an Integer in range of 1..n
|
|
//
|
|
|
|
|
|
#ifndef NCollection_DefineSequence_HeaderFile
|
|
#define NCollection_DefineSequence_HeaderFile
|
|
|
|
#include <NCollection_DefineBaseCollection.hxx>
|
|
#include <NCollection_Sequence.hxx>
|
|
|
|
// **************************************** Template for Sequence class ********
|
|
|
|
#define DEFINE_SEQUENCE(_ClassName_, _BaseCollection_, TheItemType) \
|
|
typedef NCollection_Sequence<TheItemType > _ClassName_;
|
|
|
|
#endif
|