Salome HOME
updated copyright message
[modules/gui.git] / src / CASCatch / CASCatch.hxx
index 03541f951db556f93ba65ff4e46ba0ba052d1f44..10261645161fae3f3be0c356cc769e815b5b4d93 100644 (file)
@@ -1,25 +1,30 @@
-// Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// Copyright (C) 2007-2023  CEA, EDF, 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 
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// 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 
+// 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
 //
 
-#ifndef _CASCatch_HeaderFile
-#define _CASCatch_HeaderFile
+// File   : CASCatch.hxx
+// Author : Sergey RUIN, Open CASCADE S.A.S (sergey.ruin@opencascade.com)
+//
+#ifndef CASCATCH_HXX
+#define CASCATCH_HXX
 
 #include <Standard_Failure.hxx>
 #include <Standard_ErrorHandler.hxx>
        Standard_ErrorHandler _Function; \
        K_SETJMP = 1 ; \
        if(DoesNotAbort(_Function))
-#   else  //If DO_ABORT is not defined
+#   else  // ! DO_ABORT
 #     define CASCatch_TRY \
         Standard_ErrorHandler _Function; \
         if(DoesNotAbort(_Function))
-#   endif //DO_ABORT
+#   endif // DO_ABORT
 #   define CASCatch_CATCH(Error)   \
       else if(_Function.Catches(STANDARD_TYPE(Error)))
-#else
+#else  // ! NO_CXX_EXCEPTION
 #  define CASCatch_TRY try
 #  define CASCatch_CATCH catch
-#endif //NO_CXX_EXCEPTION
+#endif // NO_CXX_EXCEPTION
 
 
-#endif
+#endif // CASCATCH_HXX