Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / MEDMEM / MEDMEM_STRING.hxx
1 //  Copyright (C) 2007-2008  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 # ifndef MEDMEM_STRING_HXX
23 # define MEDMEM_STRING_HXX
24
25 #include "MEDMEM.hxx"
26
27 using namespace std;
28
29 # include <string>
30 # include <sstream>
31
32 /*!
33  A class to generate string from any type:
34
35  here is a simple use case
36       STRING msgErr;
37       msgErr << "This Object cannot be instanciated by now ! Try "<< 11 << "times just to see what happens ";
38       throw SALOME_EXCEPTION (LOCALIZED(msgErr)) ;
39                                                                 */
40 namespace MEDMEM {
41   class MEDMEM_EXPORT STRING : public string
42   {
43
44   private :
45     ostringstream _s ;
46
47   public :
48   
49     STRING() :string(), _s() 
50     {
51     }
52     STRING(const STRING& s) :string(s)
53     {
54       _s << s ;
55       this->string::operator =( s );
56     }
57     STRING& operator= (const STRING& s)
58     {
59       _s.str("");
60       _s << s ;
61
62       this->string::operator = ( _s.str() ) ;  // freeze is true by now
63
64       return *this ;
65     }
66
67     ~STRING()
68     {
69     }
70
71     operator const char * () const 
72     {
73       // return const_cast <const char *> (this->c_str()) ;
74       return this->c_str();
75     }
76
77     template <class T> STRING( const T &valeur ) : string(), _s() 
78     {
79       _s << valeur ;
80
81       this->string::operator =( _s.str());
82     }
83
84     template <class T> STRING & operator<<( const T &valeur )
85     {
86       _s << valeur ;
87
88       this->string::operator = ( _s.str() ) ;  // freeze is true by now
89
90       return *this ;
91     }
92   } ;
93
94
95 # endif