blob: da52010589222fafeca3f9e541fa440fad36e4c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// File: BinLDrivers_VectorOfDocumentSection.cpp
// Created: 28.04.07 18:59
// Author: Alexander GRIGORIEV
// Copyright: Open CASCADE 2007
#ifndef BinLDrivers_VectorOfDocumentSection_H
#define BinLDrivers_VectorOfDocumentSection_H
#include <NCollection_Vector.hxx>
#include <BinLDrivers_DocumentSection.hxx>
/// Collection of BinLDrivers_DocumentSection
typedef NCollection_Vector <BinLDrivers_DocumentSection>
BinLDrivers_VectorOfDocumentSection;
#endif // BinLDrivers_VectorOfDocumentSection_H
|