Salome HOME
To avoid compilation pb on RedHat 8.0.
[modules/kernel.git] / src / CASCatch / CASCatch.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
21 #ifndef _CASCatch_HeaderFile
22 #define _CASCatch_HeaderFile
23
24 #include <Standard_Failure.hxx>
25 #include <Standard_ErrorHandler.hxx>
26
27
28 #ifdef try
29 #  undef try
30 #endif
31
32 #ifdef catch
33 #  undef catch
34 #endif
35
36 #ifdef NO_CXX_EXCEPTION
37 #  if defined(DO_ABORT)
38 #    define CASCatch_TRY \
39        Standard_ErrorHandler _Function; \
40        K_SETJMP = 1 ; \
41        if(DoesNotAbort(_Function))
42 #   else  //If DO_ABORT is not defined
43 #     define CASCatch_TRY \
44         Standard_ErrorHandler _Function; \
45         if(DoesNotAbort(_Function))
46 #   endif //DO_ABORT
47 #   define CASCatch_CATCH(Error)   \
48       else if(_Function.Catches(STANDARD_TYPE(Error)))
49 #else
50 #  define CASCatch_TRY try
51 #  define CASCatch_CATCH catch
52 #endif //NO_CXX_EXCEPTION
53
54
55 #endif