Salome HOME
PR: first version from Antony GEAY, with directory restructuration
[modules/yacs.git] / src / engine / Port.cxx
diff --git a/src/engine/Port.cxx b/src/engine/Port.cxx
new file mode 100644 (file)
index 0000000..1fc5920
--- /dev/null
@@ -0,0 +1,18 @@
+#include "Port.hxx"
+
+using namespace YACS::ENGINE;
+
+const char Port::NAME[]="Port";
+
+Port::Port(Node *node):_node(node)
+{
+}
+
+Port::~Port()
+{
+}
+
+std::string Port::getNameOfTypeOfCurrentInstance() const
+{
+  return NAME;
+}