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