| 57 | } |
| 58 | |
| 59 | CrdTransf * |
| 60 | OPS_getCrdTransf(int tag) { |
| 61 | |
| 62 | TaggedObject *theResult = theCrdTransfObjects.getComponentPtr(tag); |
| 63 | if (theResult == 0) { |
| 64 | opserr << "CrdTransf *getCrdTransf(int tag) - none found with tag: " << tag << endln; |
| 65 | return 0; |
| 66 | } |
| 67 | CrdTransf *theSeries = (CrdTransf *)theResult; |
| 68 | |
| 69 | return theSeries; |
| 70 | } |
| 71 | |
| 72 | void |
| 73 | OPS_clearAllCrdTransf(void) { |
no test coverage detected