]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/Port.cxx
Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[modules/yacs.git] / src / engine / Port.cxx
1 #include "Port.hxx"
2
3 using namespace YACS::ENGINE;
4 using namespace std;
5
6 const char Port::NAME[]="Port";
7
8 int Port::total_ = 0;
9
10 Port::Port(Node *node)
11   : _node(node)
12 {
13   id_ = total_++;
14 }
15
16 Port::~Port()
17 {
18 }
19
20 string Port::getNameOfTypeOfCurrentInstance() const
21 {
22   return NAME;
23 }
24
25 // TypeCode * Port::type()
26 // {
27 //   return _type;
28 // }