| 283 | static BasicModelBuilder *theModelBuilder = nullptr; |
| 284 | |
| 285 | G3_Runtime * |
| 286 | G3_getRuntime(Tcl_Interp *interp) |
| 287 | { |
| 288 | G3_Runtime *rt = (G3_Runtime*)Tcl_GetAssocData(interp, "G3_Runtime", nullptr); |
| 289 | if (!rt) |
| 290 | opserr << G3_WARN_PROMPT << " No runtime\n";; |
| 291 | return rt; |
| 292 | } |
| 293 | |
| 294 | Tcl_Interp * |
| 295 | G3_getInterpreter(G3_Runtime* rt) {return rt->m_interp;} |
no outgoing calls
no test coverage detected