]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/XMLCORBAConv.hxx
Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / runtime / XMLCORBAConv.hxx
1 #ifndef __XMLCORBACONV_HXX__
2 #define __XMLCORBACONV_HXX__
3
4 #include "InputPort.hxx"
5
6 namespace YACS
7 {
8   namespace ENGINE
9   {
10     class InputCorbaPort;
11
12     //Adaptator Ports Xml->Corba for several types
13
14     class XmlCorba : public ProxyPort
15     {
16     public:
17       XmlCorba(InputCorbaPort* p);
18       virtual void put(const void *data)  throw(ConversionException);
19       void put(const char *data) throw(ConversionException);
20     };
21   }
22 }
23
24 #endif