Subversion Repositories gelsvn

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
120 jab 1
#include "templates.h"
2
 
3
namespace HMesh
4
{
5
		template struct Vertex_template<Iters>;
6
		template struct HalfEdge_template<Iters>;
7
		template struct Face_template<Iters>;
8
 
9
		FaceIter get_null_face_iter()
10
		{
11
				static FaceList l(0);
12
				return l.end();
13
		}
14
 
15
		HalfEdgeIter get_null_halfege_iter()
16
		{
17
				static HalfEdgeList l(0);
18
				return l.end();
19
		}
20
 
21
		VertexIter get_null_vertex_iter()
22
		{
23
				static VertexList l;
24
				return l.end();
25
		}
26
}