blob: f2e65925b5113d682f20b40dcc800e6f289f19bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// File: BRepMesh_VectorOfVertex.hxx
// Created: Jun 1 18:11:53 2011
// Author: Oleg AGASHIN
// Copyright: Open CASCADE SAS 2011
#ifndef _BRepMesh_VectorOfVertex_HeaderFile
#define _BRepMesh_VectorOfVertex_HeaderFile
#ifndef _BRepMesh_Vertex_HeaderFile
#include <BRepMesh_Vertex.hxx>
#endif
#ifndef NCollection_Vector_HeaderFile
#include <NCollection_Vector.hxx>
#endif
typedef NCollection_Vector<BRepMesh_Vertex> BRepMesh_VectorOfVertex;
#endif
|