[MOAB-dev] r3967 - MOAB/trunk/src/io

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Wed May 26 16:52:58 CDT 2010


Author: kraftche
Date: 2010-05-26 16:52:58 -0500 (Wed, 26 May 2010)
New Revision: 3967

Modified:
   MOAB/trunk/src/io/WriteHDF5.hpp
Log:
fix compile error on IBM

Modified: MOAB/trunk/src/io/WriteHDF5.hpp
===================================================================
--- MOAB/trunk/src/io/WriteHDF5.hpp	2010-05-26 21:28:03 UTC (rev 3966)
+++ MOAB/trunk/src/io/WriteHDF5.hpp	2010-05-26 21:52:58 UTC (rev 3967)
@@ -46,6 +46,16 @@
 {
 protected: 
 
+  /** The type to use for entity IDs w/in the file.
+   * 
+   * NOTE:  If this is changed, the value of id_type 
+   *        MUST be changed accordingly.
+   */
+  typedef EntityHandle id_t;
+  
+  /** HDF5 type corresponding to type of id_t */
+  static const hid_t id_type;
+
   struct ExportType
   {
       //! The type of the entities in the range
@@ -125,16 +135,6 @@
 
   static WriterIface* factory( Interface* );
 
-  /** The type to use for entity IDs w/in the file.
-   * 
-   * NOTE:  If this is changed, the value of id_type 
-   *        MUST be changed accordingly.
-   */
-  typedef EntityHandle id_t;
-  
-  /** HDF5 type corresponding to type of id_t */
-  static const hid_t id_type;
-
   WriteHDF5( Interface* iface );
   
   virtual ~WriteHDF5();















More information about the moab-dev mailing list