]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/CppNeutralConv.hxx
Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / runtime / CppNeutralConv.hxx
1 #ifndef __CPPNEUTRALCONV_HXX__
2 #define __CPPNEUTRALCONV_HXX__
3
4 #include "InputPort.hxx"
5
6 namespace YACS
7 {
8   namespace ENGINE
9   {
10     //Proxy port to adapt Neutral port to Python port
11
12     class CppNeutral : public ProxyPort
13     {
14     public:
15       CppNeutral(InputPort* p);
16       virtual void put(const void *data)  throw(ConversionException);
17       void put(Any *data) throw(ConversionException);
18     };
19     int isAdaptableNeutralCpp(const TypeCode * t1, const TypeCode * t2);
20   }
21 }
22
23 #endif