]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/Port.cxx
Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / engine / Port.cxx
index 9476c510065cff548720b3bb432797352b07bf7c..0b54f88a6bd03b6739ce049dcc19a3fdea015c80 100644 (file)
@@ -1,9 +1,13 @@
 #include "Port.hxx"
+#include "Node.hxx"
 #include <iostream>
 
 using namespace YACS::ENGINE;
 using namespace std;
 
+//#define _DEVDEBUG_
+#include "YacsTrace.hxx"
+
 const char Port::NAME[]="Port";
 
 int Port::_total = 0;
@@ -26,3 +30,10 @@ string Port::getNameOfTypeOfCurrentInstance() const
 {
   return NAME;
 }
+
+void Port::modified()
+{
+  DEBTRACE("Port::modified()");
+  if(_node)
+    _node->modified();
+}