Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / engine / DataNode.cxx
1 #include "DataNode.hxx"
2
3 namespace YACS
4 {
5   namespace ENGINE
6   {
7     DataNode::~DataNode() 
8       {
9       }
10     void DataNode::setData(InputPort* port,std::string& data) 
11       {
12       }
13     void DataNode::setData(OutputPort* port,std::string& data) 
14       {
15       }
16     void DataNode::setRef(std::string& ref) 
17       {
18         _ref=ref;
19       }
20     std::string DataNode::getRef() 
21       {
22         return _ref;
23       }
24   }
25 }
26