Salome HOME
updated copyright message
[modules/shaper.git] / src / Events / Events.i
1 // Copyright (C) 2014-2023  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 /* Events.i */
21 %module(directors="1") EventsAPI
22 %feature("director:except") {
23     if ($error != NULL) {
24       PyErr_Print();
25       std::cerr << std::endl;
26       throw Swig::DirectorMethodException();
27     }
28 }
29
30 %{
31   #include "Events.h"
32   #include "Events_InfoMessage.h"
33   #include "Events_Listener.h"
34   #include "Events_Loop.h"
35   #include "Events_Message.h"
36   #include "Events_MessageGroup.h"
37
38   #ifdef _MSC_VER
39   # pragma warning(disable: 4456) // declaration of variable hides previous local declaration
40   # pragma warning(disable: 4459) // declaration of variable hides global declaration
41   #endif
42 %}
43
44
45 // to avoid error on this
46 #define EVENTS_EXPORT
47
48 // standard definitions
49 %include "typemaps.i"
50 %include "std_string.i"
51 %include "std_wstring.i"
52
53 // directors
54 %feature("director") Events_Listener;
55
56 // all supported interfaces
57 %include "Events_Message.h"
58 %include "Events_InfoMessage.h"
59 %include "Events_Listener.h"
60 %include "Events_Loop.h"
61 %include "Events_MessageGroup.h"