smesh/src/SMESHUtils/SMESH_Comment.hxx

77 lines
2.0 KiB
C++
Raw Normal View History

2016-03-18 22:10:20 +05:00
// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
2012-08-09 16:03:55 +06:00
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
2014-02-20 18:25:37 +06:00
// version 2.1 of the License, or (at your option) any later version.
2012-08-09 16:03:55 +06:00
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// SMESH SMESH : implementaion of SMESH idl descriptions
// File : SMESH_Comment.hxx
// Created : Wed Mar 14 18:28:45 2007
// Author : Edward AGAPOV (eap)
// Module : SMESH
// $Header:
//
#ifndef SMESH_Comment_HeaderFile
#define SMESH_Comment_HeaderFile
# include <string>
# include <sstream>
/*!
* \brief Class to generate string from any type
*/
class SMESH_Comment : public std::string
2012-08-09 16:03:55 +06:00
{
std::ostringstream _s ;
2012-08-09 16:03:55 +06:00
public :
SMESH_Comment():std::string("") {}
2012-08-09 16:03:55 +06:00
SMESH_Comment(const SMESH_Comment& c):std::string() {
2012-08-09 16:03:55 +06:00
_s << c.c_str() ;
this->std::string::operator=( _s.str() );
2012-08-09 16:03:55 +06:00
}
SMESH_Comment & operator=(const SMESH_Comment& c) {
_s << c.c_str() ;
this->std::string::operator=( _s.str() );
2012-08-09 16:03:55 +06:00
return *this;
}
template <class T>
SMESH_Comment( const T &anything ) {
_s << anything ;
this->std::string::operator=( _s.str() );
2012-08-09 16:03:55 +06:00
}
template <class T>
SMESH_Comment & operator<<( const T &anything ) {
_s << anything ;
this->std::string::operator=( _s.str() );
2012-08-09 16:03:55 +06:00
return *this ;
}
operator char*() const {
return (char*)c_str();
}
std::ostream& Stream() { return _s; }
2012-08-09 16:03:55 +06:00
};
#endif