[MOAB-dev] r1591 - MOAB/trunk
kraftche at mcs.anl.gov
kraftche at mcs.anl.gov
Wed Feb 6 15:39:35 CST 2008
Author: kraftche
Date: 2008-02-06 15:39:34 -0600 (Wed, 06 Feb 2008)
New Revision: 1591
Modified:
MOAB/trunk/FileTokenizer.cpp
MOAB/trunk/MBBits.hpp
MOAB/trunk/MBCN.cpp
MOAB/trunk/MBReadUtilIface.hpp
MOAB/trunk/ReadVtk.cpp
MOAB/trunk/SequenceData.hpp
MOAB/trunk/WriteSTL.cpp
Log:
add missing #includes
Modified: MOAB/trunk/FileTokenizer.cpp
===================================================================
--- MOAB/trunk/FileTokenizer.cpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/FileTokenizer.cpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -18,6 +18,7 @@
#include <cstring>
#include <cctype>
#include <string>
+#include <cstdlib>
using namespace std;
FileTokenizer::FileTokenizer( FILE* file_ptr, MBReadUtilIface* rif_ptr )
Modified: MOAB/trunk/MBBits.hpp
===================================================================
--- MOAB/trunk/MBBits.hpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/MBBits.hpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -32,6 +32,7 @@
#include "MBInternals.hpp"
#include <assert.h>
+#include <string.h>
//! bit manipulator class
class MBBitManipulator
Modified: MOAB/trunk/MBCN.cpp
===================================================================
--- MOAB/trunk/MBCN.cpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/MBCN.cpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -16,6 +16,7 @@
#include "MBCN.hpp"
#include "MBCNArrays.hpp"
#include <assert.h>
+#include <string.h>
const char *MBCN::entityTypeNames[] = {
"Vertex",
Modified: MOAB/trunk/MBReadUtilIface.hpp
===================================================================
--- MOAB/trunk/MBReadUtilIface.hpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/MBReadUtilIface.hpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -19,6 +19,7 @@
#include <vector>
+#include <string>
#include "MBTypes.h"
class MBRange;
Modified: MOAB/trunk/ReadVtk.cpp
===================================================================
--- MOAB/trunk/ReadVtk.cpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/ReadVtk.cpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -20,6 +20,7 @@
*/
#include <assert.h>
+#include <stdlib.h>
#include "ReadVtk.hpp"
#include "MBRange.hpp"
Modified: MOAB/trunk/SequenceData.hpp
===================================================================
--- MOAB/trunk/SequenceData.hpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/SequenceData.hpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -5,6 +5,8 @@
#include "TypeSequenceManager.hpp"
#include <vector>
+#include <stdlib.h>
+#include <string.h>
class TagServer;
Modified: MOAB/trunk/WriteSTL.cpp
===================================================================
--- MOAB/trunk/WriteSTL.cpp 2008-02-06 01:02:02 UTC (rev 1590)
+++ MOAB/trunk/WriteSTL.cpp 2008-02-06 21:39:34 UTC (rev 1591)
@@ -45,6 +45,7 @@
#include <errno.h>
#include <math.h>
#include <fcntl.h>
+#include <limits.h>
#ifdef _MSC_VER /* windows */
# include <io.h>
More information about the moab-dev
mailing list