Salome HOME
Merge branch 'agy/ParallelContainerLaunch'
[modules/yacs.git] / src / runtime / TypeConversions.hxx
index e04f1b9e8b73cf9067de273392d366463eb952e6..e75ffbf29baf2f3fa61590db85b9c5a974352a7e 100644 (file)
@@ -1,11 +1,31 @@
+// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef _TYPECONVERSIONS_HXX_
 #define _TYPECONVERSIONS_HXX_
 
+#include "YACSRuntimeSALOMEExport.hxx"
+
 #include <Python.h>
 #include <omniORB4/CORBA.h>
 #include <libxml/parser.h>
-#include "Any.hxx"
+#include <string>
 
 namespace YACS
 {
@@ -22,6 +42,7 @@ namespace YACS
       } ImplType;
 
     class TypeCode;
+    class Any;
 
     CORBA::TypeCode_ptr getCorbaTC(const TypeCode *t);
 
@@ -47,10 +68,14 @@ namespace YACS
     std::string convertCorbaXml(const TypeCode * t,CORBA::Any* ob);
 
     CORBA::Any *convertPyObjectCorba(const TypeCode *t,PyObject *ob);
-    std::string convertPyObjectXml(const TypeCode * t,PyObject* ob);
+    YACSRUNTIMESALOME_EXPORT std::string convertPyObjectXml(const TypeCode * t,PyObject* ob);
     YACS::ENGINE::Any *convertPyObjectNeutral(const TypeCode *t,PyObject* ob);
+    PyObject* convertPyObjectPyObject(const TypeCode *t,PyObject *ob);
+    std::string convertPyObjectToString(PyObject* ob);
+    bool checkPyObject(const TypeCode *t,PyObject* ob);
 
     PyObject *convertXmlPyObject(const TypeCode * t,xmlDocPtr doc,xmlNodePtr cur );
+    PyObject *convertXmlStrPyObject(const TypeCode * t,std::string data );
     CORBA::Any *convertXmlCorba(const TypeCode * t,xmlDocPtr doc,xmlNodePtr cur );
     YACS::ENGINE::Any *convertXmlNeutral(const TypeCode * t,xmlDocPtr doc,xmlNodePtr cur );