blob: 9be00d185cd7eb738635c9138676b90e484ce348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// File: Poly_ListOfTriangulation.hxx
// Created: 21.04.08 11:12
// Author: Alexander GRIGORIEV
// Copyright: Open Cascade 2008
#ifndef Poly_ListOfTriangulation_HeaderFile
#define Poly_ListOfTriangulation_HeaderFile
#include <NCollection_List.hxx>
#include <Handle_Poly_Triangulation.hxx>
/**
* List of Poly_Triangulation instances.
*/
typedef NCollection_List<Handle_Poly_Triangulation> Poly_ListOfTriangulation;
#endif
|