[cig-commits] r13841 - cs/cigma/trunk/src

luis at geodynamics.org luis at geodynamics.org
Mon Jan 12 14:10:10 PST 2009


Author: luis
Date: 2009-01-12 14:10:10 -0800 (Mon, 12 Jan 2009)
New Revision: 13841

Modified:
   cs/cigma/trunk/src/io_file_reader.h
Log:
Added ReaderType for CUBIT mesh files (ExodusII files)

Modified: cs/cigma/trunk/src/io_file_reader.h
===================================================================
--- cs/cigma/trunk/src/io_file_reader.h	2009-01-12 22:10:09 UTC (rev 13840)
+++ cs/cigma/trunk/src/io_file_reader.h	2009-01-12 22:10:10 UTC (rev 13841)
@@ -43,6 +43,7 @@
     virtual void getFloatArray(const char *loc, cigma::array<float>& A) = 0;
     virtual void getDoubleArray(const char *loc, cigma::array<double>& A) = 0;
 
+    // XXX: move these to their respective classes? (using enable_shared_from_this.hpp header)
     virtual boost::shared_ptr<NodeCoordinates> getNodeCoordinates(const char *loc) = 0;
     virtual boost::shared_ptr<ElementBlock> getElementBlock(const char *loc) = 0;
     virtual boost::shared_ptr<MeshPart> getMeshPart(const char *loc) = 0;
@@ -58,6 +59,7 @@
         NULL_FILE_READER,
         HDF5_FILE_READER,
         VTK_FILE_READER,
+        EXO_FILE_READER,
         TEXT_FILE_READER
     } ReaderType;
 



More information about the CIG-COMMITS mailing list