Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r2047 - trunk/Model/Groups


Chronological Thread 
  • From: "James Bigler" <bigler@cs.utah.edu>
  • To: manta@sci.utah.edu
  • Subject: [Manta] r2047 - trunk/Model/Groups
  • Date: Mon, 11 Feb 2008 10:24:55 -0700 (MST)

Author: bigler
Date: Mon Feb 11 10:24:54 2008
New Revision: 2047

Modified:
   trunk/Model/Groups/Mesh.cc
   trunk/Model/Groups/Mesh.h
Log:
Model/Groups/Mesh.cc
Model/Groups/Mesh.h

  Put empty desctructor in .cc file.


Modified: trunk/Model/Groups/Mesh.cc
==============================================================================
--- trunk/Model/Groups/Mesh.cc  (original)
+++ trunk/Model/Groups/Mesh.cc  Mon Feb 11 10:24:54 2008
@@ -12,6 +12,11 @@
 {
 }
 
+Mesh::~Mesh()
+{
+  //  cerr << MANTA_FUNC << " called.\n";
+}
+
 Mesh* Mesh::clone(CloneDepth depth, Clonable* incoming)
 {
   Mesh *copy;

Modified: trunk/Model/Groups/Mesh.h
==============================================================================
--- trunk/Model/Groups/Mesh.h   (original)
+++ trunk/Model/Groups/Mesh.h   Mon Feb 11 10:24:54 2008
@@ -47,7 +47,7 @@
     // Should we support having both face_normals and vertex_normals?
 
     Mesh();
-    virtual ~Mesh(){}
+    virtual ~Mesh();
 
     virtual Mesh* clone(CloneDepth depth, Clonable* incoming=NULL);
 




  • [Manta] r2047 - trunk/Model/Groups, James Bigler, 02/11/2008

Archive powered by MHonArc 2.6.16.

Top of page