make same as in V5_1_main

+  operator char*() const {
+    return (char*)c_str();
+  }
This commit is contained in:
eap 2009-03-03 09:00:32 +00:00
parent 58fe09d5ef
commit d45660bd01

View File

@ -32,34 +32,40 @@
# include <string>
# include <sstream>
using namespace std;
/*!
* \brief Class to generate string from any type
*/
class SMESH_Comment : public std::string
class SMESH_Comment : public string
{
std::ostringstream _s ;
ostringstream _s ;
public :
SMESH_Comment(): std::string("") {}
SMESH_Comment():string("") {}
SMESH_Comment(const SMESH_Comment& c): std::string() {
SMESH_Comment(const SMESH_Comment& c):string() {
_s << c.c_str() ;
this->std::string::operator=( _s.str() );
this->string::operator=( _s.str() );
}
template <class T>
SMESH_Comment( const T &anything ) {
_s << anything ;
this->std::string::operator=( _s.str() );
this->string::operator=( _s.str() );
}
template <class T>
SMESH_Comment & operator<<( const T &anything ) {
_s << anything ;
this->std::string::operator=( _s.str() );
this->string::operator=( _s.str() );
return *this ;
}
operator char*() const {
return (char*)c_str();
}
};