Salome HOME
e07ef3b913b7632f7e57f3554e3c77aa85f620c0
[tools/py2cpp.git] / example / main.cxx
1 // Copyright (C) 2019  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   std::string s;
29   double d;
30   py2cpp::PyFunction fn;
31   fn.load("mymodule", "myfunction");
32   if(!fn)
33   {
34     std::cerr << "Impossible to load myfunction from the module mymodule!";
35     std::cerr << std::endl;
36     std::cerr << py2cpp::getLastPyError();
37   }
38   else
39   {
40     try
41     {
42       py2cpp::pyResult(s,d) = fn(1, 2);
43       std::cout << "String parameter from the python function:" << s << std::endl;
44       std::cout << "Double parameter from the python function:" << d << std::endl;
45     }
46     catch(const py2cpp::Exception& err)
47     {
48       std::cerr << err.what();
49     }
50   }
51   Py_Finalize();
52   return 0;
53 }