Salome HOME
23237: EDF 12367 - SIGSEGV with Remove group
[modules/smesh.git] / src / SMESHUtils / SMESH_Comment.hxx
index 5e6420fda11f1dfb98d2f34f4d9612c64475893b..bb4c9b48748f6f0d97551da39d8d7a284db4054f 100644 (file)
 # include <string>
 # include <sstream>
 
 # include <string>
 # include <sstream>
 
-using namespace std;
-
 /*!
  * \brief Class to generate string from any type
  */
 /*!
  * \brief Class to generate string from any type
  */
-class SMESH_Comment : public string
+class SMESH_Comment : public std::string
 {
 {
-  ostringstream _s ;
+  std::ostringstream _s ;
 
 public :
 
 
 public :
 
-  SMESH_Comment():string("") {}
+  SMESH_Comment():std::string("") {}
 
 
-  SMESH_Comment(const SMESH_Comment& c):string() {
+  SMESH_Comment(const SMESH_Comment& c):std::string() {
     _s << c.c_str() ;
     _s << c.c_str() ;
-    this->string::operator=( _s.str() );
+    this->std::string::operator=( _s.str() );
   }
 
   SMESH_Comment & operator=(const SMESH_Comment& c) {
     _s << c.c_str() ;
   }
 
   SMESH_Comment & operator=(const SMESH_Comment& c) {
     _s << c.c_str() ;
-    this->string::operator=( _s.str() );
+    this->std::string::operator=( _s.str() );
     return *this;
   }
 
   template <class T>
   SMESH_Comment( const T &anything ) {
     _s << anything ;
     return *this;
   }
 
   template <class T>
   SMESH_Comment( const T &anything ) {
     _s << anything ;
-    this->string::operator=( _s.str() );
+    this->std::string::operator=( _s.str() );
   }
 
   template <class T>
   SMESH_Comment & operator<<( const T &anything ) {
     _s << anything ;
   }
 
   template <class T>
   SMESH_Comment & operator<<( const T &anything ) {
     _s << anything ;
-    this->string::operator=( _s.str() );
+    this->std::string::operator=( _s.str() );
     return *this ;
   }
 
     return *this ;
   }