| 10169 | } |
| 10170 | |
| 10171 | int |
| 10172 | elementDeactivate(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 10173 | { |
| 10174 | |
| 10175 | int eleTag; |
| 10176 | int argLoc = 1; |
| 10177 | int Nelements = argc; |
| 10178 | ID deactivate_us(0, Nelements); |
| 10179 | |
| 10180 | while (argLoc < argc && Tcl_GetInt(interp, argv[argLoc], &eleTag) == TCL_OK) { |
| 10181 | deactivate_us.insert(eleTag); |
| 10182 | ++argLoc; |
| 10183 | } |
| 10184 | |
| 10185 | theDomain.deactivateElements(deactivate_us); |
| 10186 | return TCL_OK;} |
| 10187 | |
| 10188 | int |
| 10189 | version(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
nothing calls this directly
no test coverage detected