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