Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/med.git] / src / MEDMEM / MEDMEM_STRING.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 # ifndef MEDMEM_STRING_HXX
21 # define MEDMEM_STRING_HXX
22
23 #include "MEDMEM.hxx"
24
25 using namespace std;
26
27 # include <string>
28 # include <sstream>
29
30 /*!
31  A class to generate string from any type:
32
33  here is a simple use case
34       STRING msgErr;
35       msgErr << "This Object cannot be instanciated by now ! Try "<< 11 << "times just to see what happens ";
36       throw SALOME_EXCEPTION (LOCALIZED(msgErr)) ;
37                                                                 */
38 namespace MEDMEM {
39   class MEDMEM_EXPORT STRING : public string
40   {
41
42   private :
43     ostringstream _s ;
44
45   public :
46   
47     STRING() :string(), _s() 
48     {
49     }
50
51     ~STRING()
52     {
53     }
54
55     operator const char * () const 
56     {
57       // return const_cast <const char *> (this->c_str()) ;
58       return this->c_str();
59     }
60
61     template <class T> STRING( const T &valeur ) : string(), _s() 
62     {
63       _s << valeur ;
64
65       this->string::operator =( _s.str());
66     }
67
68     template <class T> STRING & operator<<( const T &valeur )
69     {
70       _s << valeur ;
71
72       this->string::operator = ( _s.str() ) ;  // freeze is true by now
73
74       return *this ;
75     }
76   } ;
77 } ;
78
79 # endif