| 332 | } |
| 333 | |
| 334 | LoadPattern * |
| 335 | MultiSupportPattern::getCopy(void) |
| 336 | { |
| 337 | LoadPattern *theCopy = new MultiSupportPattern(this->getTag()); |
| 338 | for (int i=0; i<numMotions; i++) { |
| 339 | theCopy->addMotion(*theMotions[i], theMotionTags[i]); |
| 340 | } |
| 341 | return theCopy; |
| 342 | } |