Salome HOME
Remove Opencascade dependencies. Change to STL.
[modules/smesh.git] / src / SMESHDS / SMESHDS_Hypothesis.hxx
index b6e21c2cd03d288175c7da156146e58a8a55b337..3a79039b8d1b3136c48fa5ae8776fc16dc8da0fd 100644 (file)
@@ -38,9 +38,7 @@
 #include <istream.h>
 #include <ostream.h>
 #endif
-  
-// class istream;
-// class ostream;
+using namespace std;  
 
 class SMESHDS_Hypothesis
 {
@@ -48,9 +46,9 @@ public:
   SMESHDS_Hypothesis(int hypId);
   virtual ~SMESHDS_Hypothesis();
 
-  const char* GetName();
-  int GetID();
-  int GetType();
+  const char* GetName() const;
+  int GetID() const;
+  int GetType() const;
 
   virtual ostream & SaveTo(ostream & save)=0;
   virtual istream & LoadFrom(istream & load)=0;