Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r2202 - trunk/Model/Readers


Chronological Thread 
  • From: brownlee@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r2202 - trunk/Model/Readers
  • Date: Wed, 16 Apr 2008 13:23:13 -0600 (MDT)

Author: brownlee
Date: Wed Apr 16 13:23:13 2008
New Revision: 2202

Modified:
   trunk/Model/Readers/UDAReader-stub.cc
   trunk/Model/Readers/UDAReader.cc
   trunk/Model/Readers/UDAReader.h
Log:
fixing warnings on linux

Modified: trunk/Model/Readers/UDAReader-stub.cc
==============================================================================
--- trunk/Model/Readers/UDAReader-stub.cc       (original)
+++ trunk/Model/Readers/UDAReader-stub.cc       Wed Apr 16 13:23:13 2008
@@ -2,7 +2,7 @@
 #include <iostream>
 using namespace std;
 
-void UDAReader::ReadUDA(string directory)
+void UDAReader::readUDA(string directory)
 {
     cerr << "UDAReader compiled without libxml, please link libxml2 and 
recompile Manta\n";
 }

Modified: trunk/Model/Readers/UDAReader.cc
==============================================================================
--- trunk/Model/Readers/UDAReader.cc    (original)
+++ trunk/Model/Readers/UDAReader.cc    Wed Apr 16 13:23:13 2008
@@ -2,6 +2,7 @@
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 #include <iostream>
+#include <cassert>
 
 using namespace std;
 using namespace Manta;
@@ -21,7 +22,7 @@
     return st;
 }
 
-void UDAReader::ReadUDA(string directory)
+void UDAReader::readUDA(string directory)
     {
         string filename;
         assert(directory.length());

Modified: trunk/Model/Readers/UDAReader.h
==============================================================================
--- trunk/Model/Readers/UDAReader.h     (original)
+++ trunk/Model/Readers/UDAReader.h     Wed Apr 16 13:23:13 2008
@@ -25,7 +25,7 @@
 {
 public:
     UDAReader() {}
-    void ReadUDA(std::string directory);
+    void readUDA(std::string directory);
     struct Timestep
     {
         Vector lower, upper, indices;
@@ -45,4 +45,5 @@
 
 }
  
-#endif
\ No newline at end of file
+#endif
+




  • [Manta] r2202 - trunk/Model/Readers, brownlee, 04/16/2008

Archive powered by MHonArc 2.6.16.

Top of page