Salome HOME
Porting KERNEL on new XML reader.
[modules/kernel.git] / src / CASCatch / CASCatch_CatchSignals.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_CatchSignals_HeaderFile
22 #define _CASCatch_CatchSignals_HeaderFile
23
24 #include <Standard.hxx>
25
26 /*!
27  * \class CASCatch_CatchSignals
28  * \brief This class controls an exception handling
29  *
30  */ 
31 class CASCatch_CatchSignals  {
32
33 public:
34
35  // Methods PUBLIC
36  // 
37 Standard_EXPORT CASCatch_CatchSignals();
38 Standard_EXPORT void Destroy() ;
39 ~CASCatch_CatchSignals() { Destroy(); }
40 Standard_EXPORT void Activate() ;
41 Standard_EXPORT void Deactivate() ;
42
43 private:
44
45 /*!\var mySigStates[7], private
46  * \brief stores signals' handler functions
47  */ 
48 Standard_Address mySigStates[7];
49
50 /*!\var myFloatOpWord
51  * \brief stores a float operation word, private
52  */ 
53 Standard_Integer myFloatOpWord;
54
55 /*!\var myIsActivated
56  * \brief stores a flag whether a catcher is activated, private]
57  */
58 Standard_Boolean myIsActivated;
59
60 };
61
62
63 #endif