From 060a89a9a20ddae869218e8a4502fffe58c8a6c9 Mon Sep 17 00:00:00 2001
From: Jacob Bedrossian <jacob.bedrossian@case.edu>
Date: Wed, 8 Nov 2006 22:04:14 +0000
Subject: [PATCH] Basic infrastructure for new projection surfaces.

---
 Geo/Makefile           | 3 ++-
 Geo/projectionFace.cpp | 2 ++
 Geo/projectionFace.h   | 6 ++++++
 3 files changed, 10 insertions(+), 1 deletion(-)
 create mode 100644 Geo/projectionFace.cpp
 create mode 100644 Geo/projectionFace.h

diff --git a/Geo/Makefile b/Geo/Makefile
index 67a0aec8be..f970eb86df 100644
--- a/Geo/Makefile
+++ b/Geo/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.102 2006-11-04 00:17:08 geuzaine Exp $
+# $Id: Makefile,v 1.103 2006-11-08 22:04:14 jacob Exp $
 #
 # Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
 #
@@ -47,6 +47,7 @@ SRC = CAD.cpp \
       fourierModel.cpp\
       SVector3.cpp\
       SBoundingBox3d.cpp\
+      projectionFace.cpp\
       ExtractContour.cpp
 
 OBJ = ${SRC:.cpp=.o}
diff --git a/Geo/projectionFace.cpp b/Geo/projectionFace.cpp
new file mode 100644
index 0000000000..605cf416de
--- /dev/null
+++ b/Geo/projectionFace.cpp
@@ -0,0 +1,2 @@
+#include "projectionFace.h"
+
diff --git a/Geo/projectionFace.h b/Geo/projectionFace.h
new file mode 100644
index 0000000000..e4cd6006ea
--- /dev/null
+++ b/Geo/projectionFace.h
@@ -0,0 +1,6 @@
+#include "GFace.h"
+
+class projectionFace : public GFace
+{
+
+};
-- 
GitLab