Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / runtime / XMLPythonConv.hxx
1 #ifndef __XMLPYTHONCONV_HXX__
2 #define __XMLPYTHONCONV_HXX__
3
4 #include "PythonPorts.hxx"
5
6 namespace YACS
7 {
8   namespace ENGINE
9   {
10     //Proxy port to adapt Python port to XML
11
12     class XmlPython : public ProxyPort
13     {
14     public:
15       XmlPython(InputPyPort* p);
16       virtual void put(const void *data)  throw(ConversionException);
17       void put(const char *data) throw(ConversionException);
18     };
19   }
20 }
21
22 #endif