0019929: EDF 772 SMESH : script readability

+
+  operator char*() const {
+    return (char*)c_str();
+  }
This commit is contained in:
eap 2009-02-24 14:52:58 +00:00
parent c539a4181c
commit df4afe2d50

View File

@ -62,6 +62,10 @@ public :
this->string::operator=( _s.str() );
return *this ;
}
operator char*() const {
return (char*)c_str();
}
};