[MOAB-dev] r6008 - in MOAB/branches/Version4.6: . src/io

tautges at mcs.anl.gov tautges at mcs.anl.gov
Fri Feb 15 16:22:31 CST 2013


Author: tautges
Date: 2013-02-15 16:22:31 -0600 (Fri, 15 Feb 2013)
New Revision: 6008

Modified:
   MOAB/branches/Version4.6/MOABConfig.cmake.in
   MOAB/branches/Version4.6/src/io/WriteAns.hpp
   MOAB/branches/Version4.6/src/io/WriteCCMIO.hpp
   MOAB/branches/Version4.6/src/io/WriteDamsel.hpp
   MOAB/branches/Version4.6/src/io/WriteGMV.hpp
   MOAB/branches/Version4.6/src/io/WriteGmsh.hpp
   MOAB/branches/Version4.6/src/io/WriteSLAC.hpp
   MOAB/branches/Version4.6/src/io/WriteSmf.hpp
   MOAB/branches/Version4.6/src/io/WriteTemplate.hpp
   MOAB/branches/Version4.6/src/io/WriteVtk.hpp
Log:
Back-porting r6007.



Modified: MOAB/branches/Version4.6/MOABConfig.cmake.in
===================================================================
--- MOAB/branches/Version4.6/MOABConfig.cmake.in	2013-02-15 22:13:04 UTC (rev 6007)
+++ MOAB/branches/Version4.6/MOABConfig.cmake.in	2013-02-15 22:22:31 UTC (rev 6008)
@@ -1,4 +1,6 @@
-# Config file for MOAB
+# Config file for MOAB; use the CMake find_package() function to pull this into
+# your own CMakeLists.txt file.
+#
 # This file defines the following variables:
 # MOAB_FOUND        - boolean indicating that MOAB is found
 # MOAB_INCLUDE_DIRS - include directories from which to pick up MOAB includes

Modified: MOAB/branches/Version4.6/src/io/WriteAns.hpp
===================================================================
--- MOAB/branches/Version4.6/src/io/WriteAns.hpp	2013-02-15 22:13:04 UTC (rev 6007)
+++ MOAB/branches/Version4.6/src/io/WriteAns.hpp	2013-02-15 22:22:31 UTC (rev 6008)
@@ -65,9 +65,9 @@
                           const EntityHandle *output_list,
                           const int num_sets,
                           const std::vector<std::string>& qa_list,
-                          const Tag* tag_list,
-                          int num_tags,
-                          int export_dimension);
+                          const Tag* tag_list = NULL,
+                          int num_tags = 0,
+                          int export_dimension = 3);
   
 //! struct used to hold data for each block to be output; used by
 //! initialize_file to initialize the file header for increased speed

Modified: MOAB/branches/Version4.6/src/io/WriteCCMIO.hpp
===================================================================
--- MOAB/branches/Version4.6/src/io/WriteCCMIO.hpp	2013-02-15 22:13:04 UTC (rev 6007)
+++ MOAB/branches/Version4.6/src/io/WriteCCMIO.hpp	2013-02-15 22:22:31 UTC (rev 6008)
@@ -67,9 +67,9 @@
                           const EntityHandle *output_list,
                           const int num_sets,
                           const std::vector<std::string>& qa_list,
-                          const Tag* tag_list,
-                          int num_tags,
-                          int export_dimension);
+                          const Tag* tag_list = NULL,
+                          int num_tags = 0,
+                          int export_dimension = 3);
   
 protected:
 

Modified: MOAB/branches/Version4.6/src/io/WriteDamsel.hpp
===================================================================


More information about the moab-dev mailing list