]> SALOME platform Git repositories - modules/kernel.git/blob - src/Utils/Utils_SignalsHandler.h
Salome HOME
Update version to 3.2.0a1
[modules/kernel.git] / src / Utils / Utils_SignalsHandler.h
1 //  KERNEL Utils : common utils for KERNEL
2 //  Copyright (C) 2003  CEA
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
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20
21 #ifndef _UTILS_SIGNALSHANDLER_H_
22 #define _UTILS_SIGNALSHANDLER_H_
23
24
25 #if defined UTILS_EXPORTS
26 #if defined WIN32
27 #define UTILS_EXPORT __declspec( dllexport )
28 #else
29 #define UTILS_EXPORT
30 #endif
31 #else
32 #if defined WNT
33 #define UTILS_EXPORT __declspec( dllimport )
34 #else
35 #define UTILS_EXPORT
36 #endif
37 #endif
38
39 #include <map>
40 typedef void (*TSigHandler)(int);
41
42
43 class UTILS_EXPORT Utils_SignalsHandler{
44  public:
45   Utils_SignalsHandler();
46   ~Utils_SignalsHandler();
47
48   TSigHandler GetSigHandler(int theSigId);
49   TSigHandler SetSigHandler(int theSigId, TSigHandler theSigHandler);
50   typedef std::map<int,TSigHandler> TSigHandlerCont;
51
52  private:
53   TSigHandlerCont mySigHandlerCont;
54 };
55
56
57 class UTILS_EXPORT Utils_CASSignalsHandler: private Utils_SignalsHandler{
58  public:
59   Utils_CASSignalsHandler();
60 };
61
62
63 #endif