Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMESHDS / SMESHDS_Document.hxx
index 4da7a3c470cb4ae431f8ec8c5584f2932f15a09a..e95269f11270208a1488a579037f907860e40654 100644 (file)
 #ifndef _SMESHDS_Document_HeaderFile
 #define _SMESHDS_Document_HeaderFile
 
-#include <map>
 #include "SMESHDS_Mesh.hxx"
 #include "SMESHDS_Hypothesis.hxx"
-using namespace std;
+#include <map>
+
 
 class SMESHDS_Document
 {
@@ -54,10 +54,10 @@ class SMESHDS_Document
 
   private:
        int myUserID;
-       map<int,SMESHDS_Mesh*> myMeshes;
-       map<int,SMESHDS_Hypothesis*> myHypothesis;
-       map<int,SMESHDS_Mesh*>::iterator myMeshesIt;
-       map<int,SMESHDS_Hypothesis*>::iterator myHypothesisIt;
+       std::map<int,SMESHDS_Mesh*> myMeshes;
+       std::map<int,SMESHDS_Hypothesis*> myHypothesis;
+       std::map<int,SMESHDS_Mesh*>::iterator myMeshesIt;
+       std::map<int,SMESHDS_Hypothesis*>::iterator myHypothesisIt;
 };
 
 #endif