#ifndef _SMDS_FaceOfEdges_HeaderFile
#define _SMDS_FaceOfEdges_HeaderFile
-#include <ostream>
+#include <iostream>
#include "SMDS_MeshFace.hxx"
#include "SMDS_MeshEdge.hxx"
#include "SMDS_Iterator.hxx"
#ifndef _SMDS_FaceOfNodes_HeaderFile
#define _SMDS_FaceOfNodes_HeaderFile
-#include <ostream>
+#include <iostream>
#include "SMDS_MeshFace.hxx"
#include "SMDS_MeshNode.hxx"
#include "SMDS_Iterator.hxx"
#define _SMDS_MeshEdge_HeaderFile
#include "SMDS_MeshElement.hxx"
-#include <ostream>
+#include <iostream>
class SMDS_MeshEdge:public SMDS_MeshElement
{
#include "SMDS_MeshElementIDFactory.hxx"
#include <vector>
-#include <ostream>
+#include <iostream>
using namespace std;
class SMDS_MeshNode;
#ifndef _SMDS_Tria3OfNodes_HeaderFile
#define _SMDS_Tria3OfNodes_HeaderFile
-#include <ostream>
+#include <iostream>
#include "SMDS_MeshFace.hxx"
#include "SMDS_MeshNode.hxx"
#include "SMDS_Iterator.hxx"
#include "SMDS_MeshFace.hxx"
#include "SMDS_Iterator.hxx"
#include <vector>
-#include <ostream>
+#include <iostream>
using namespace std;
class SMDS_VolumeOfFaces:public SMDS_MeshVolume
#include <TopoDS_Face.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Edge.hxx>
+
//Not portable see http://gcc.gnu.org/onlinedocs/libstdc++/faq/index.html#5_4 to know more.
-#include <ext/hash_map>
-using namespace __gnu_cxx;
+#ifdef __GNUC__
+#if __GNUC__ < 3
+ #include <hash_map.h>
+#else
+ #include <ext/hash_map>
+ using namespace __gnu_cxx;
+#endif
+#endif
using namespace std;