Salome HOME
Test EXPORTS definition with target name as suggested by cmake
[modules/kernel.git] / src / Utils / Utils_SALOME_Exception.cxx
index 3a2591bac062ae148a7d64d97e92126914b43970..6039476de8fe725ab4ca1eff0d1f627a2d1636b8 100644 (file)
@@ -1,30 +1,51 @@
-using namespace std;
-//=============================================================================
-// File      : Utils_SALOME_Exception.cxx
-// Created   : Mon Nov  5 17:01:47 CET 2001
-// Author    : Antoine YESSAYAN, EDF
-// Project   : SALOME
-// Copyright : EDF 2001
-// $Header$
-//=============================================================================
-
-using namespace std;
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  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
+//  version 2.1 of the License.
+//
+//  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
+//
+//  SALOME Utils : general SALOME's definitions and tools
+//  File   : Utils_SALOME_Exception.cxx
+//  Author : Antoine YESSAYAN, EDF
+//  Module : SALOME
+//  $Header$
+//
 #include <iostream>
 #include "Utils_SALOME_Exception.hxx"
 #include "utilities.h"
+
+#ifndef WIN32
 extern "C"
 {
+#endif
 #include <math.h>
 #include <stdio.h>
 #include <string.h>
+#ifndef WIN32
 }
+#endif
 
 
 const char* duplicate( const char *const str ) ;
 
 SALOME_Exception::SALOME_Exception( void ): exception() , _text(0)
 {
-       MESSAGE( "You must user the standard builder : SALOME_Exception::SALOME_Exception( const char *text )" ) ;
+       MESSAGE( "You must use the standard builder: SALOME_Exception::SALOME_Exception( const char *text )" ) ;
        INTERRUPTION(1) ;
 }
 
@@ -71,9 +92,9 @@ SALOME_Exception::~SALOME_Exception() throw ()
 {
        if ( _text )
        {
-               delete [] _text ;
-               char *& txt = (char*)_text ;
-               txt = 0 ;
+               delete [] ((char*)_text);
+               char** pRef = (char**)&_text;
+               *pRef = 0;
        }
        ASSERT(_text==NULL) ;
 }
@@ -86,7 +107,7 @@ SALOME_Exception::SALOME_Exception( const SALOME_Exception &ex ): _text(duplicat
 }
 
 
-ostream & operator<<( ostream &os , const SALOME_Exception &ex )
+std::ostream & operator<<( std::ostream &os , const SALOME_Exception &ex )
 {
        os << ex._text ;
        return os ;