X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCASCatch%2FCASCatch.hxx;h=7f47a317eff724beac64108d3d37d0e61c1bef9d;hb=cac0b4571c951b557e1956d4777cf1e5199637c3;hp=03541f951db556f93ba65ff4e46ba0ba052d1f44;hpb=f830c97c748d8f8a6a7eccc8e3a58e19066a1181;p=modules%2Fgui.git diff --git a/src/CASCatch/CASCatch.hxx b/src/CASCatch/CASCatch.hxx index 03541f951..7f47a317e 100644 --- a/src/CASCatch/CASCatch.hxx +++ b/src/CASCatch/CASCatch.hxx @@ -1,25 +1,30 @@ -// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// Copyright (C) 2007-2014 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 +// 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 #include @@ -39,17 +44,17 @@ 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