Salome HOME
PR: first version from Antony GEAY, with directory restructuration
[modules/yacs.git] / src / engine / InPort.hxx
1 #ifndef __INPORT_HXX__
2 #define __INPORT_HXX__
3
4 #include "Port.hxx"
5
6 namespace YACS
7 {
8   namespace ENGINE
9   {
10     class InPort : public virtual Port
11     {
12     protected:
13       InPort(Node *node);
14     };
15   }
16 }
17
18 #endif