1 // This is oxl/mvl/ProjStructure.cxx
2 
3 #include "ProjStructure.h"
4 
5 #include <mvl/HomgPoint2D.h>
6 
7 static HomgPoint2D x(0,0,0);
8 
get_point_2d(int,int)9 HomgPoint2D& ProjStructure::get_point_2d(int /*view*/, int /*c*/)
10 {
11   return x;
12 }
13 
get_point_match(int,int)14 int ProjStructure::get_point_match(int /*view*/, int /*c*/)
15 {
16   return -1;
17 }
18