Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / engine / ForLoop.cxx
index 23e36ceb926aff7c0271b7b942f8aeeb90474ff9..1089a898bf8e522ee166e7d6f24ce21df75909ba 100644 (file)
@@ -23,18 +23,6 @@ Node *ForLoop::simpleClone(ComposedNode *father, bool editionOnly) const
   return new ForLoop(*this,father,editionOnly);
 }
 
-int ForLoop::getNumberOfInputPorts() const
-{ 
-  return StaticDefinedComposedNode::getNumberOfInputPorts()+1; 
-}
-
-std::list<InputPort *> ForLoop::getSetOfInputPort() const
-{
-  list<InputPort *> ret=StaticDefinedComposedNode::getSetOfInputPort();
-  ret.push_back((InputPort *)&_nbOfTimesPort);
-  return ret;
-}
-
 InputPort* ForLoop::getInputPort(const std::string& name) const throw(Exception)
 {
     if(name == NAME_OF_NSTEPS_NUMBER)return (InputPort*)&_nbOfTimesPort;