| 1590 | } |
| 1591 | |
| 1592 | const Vector * |
| 1593 | Domain::getNodeResponse(int nodeTag, NodeResponseType responseType) |
| 1594 | { |
| 1595 | Node *theNode = this->getNode(nodeTag); |
| 1596 | if (theNode == 0) |
| 1597 | return NULL; |
| 1598 | else |
| 1599 | return theNode->getResponse(responseType); |
| 1600 | } |
| 1601 | |
| 1602 | |
| 1603 | static Vector responseData(0); |
nothing calls this directly
no test coverage detected