Salome HOME
fc8bff2a681ac7440507160394e8d82f37f039de
[tools/py2cpp.git] / example / main.cxx
1 // Copyright (C) 2019-2023 EDF R&D
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 #include "TypeConversions.hxx"
20 #include "Result.hxx"
21 #include "PyFunction.hxx"
22
23 #include <iostream>
24
25 int main()
26 {
27   Py_Initialize();
28   {
29   std::string s;
30   double d;
31   py2cpp::PyFunction fn;
32   fn.load("mymodule", "myfunction");
33   if(!fn)
34   {
35     std::cerr << "Impossible to load myfunction from the module mymodule!";
36     std::cerr << std::endl;
37     std::cerr << py2cpp::getLastPyError();
38   }
39   else
40   {
41     try
42     {
43       py2cpp::pyResult(s,d) = fn(1, 2);
44       std::cout << "String parameter from the python function:" << s << std::endl;
45       std::cout << "Double parameter from the python function:" << d << std::endl;
46     }
47     catch(const py2cpp::Exception& err)
48     {
49       std::cerr << err.what();
50     }
51   }
52   }
53   Py_Finalize();
54   return 0;
55 }