| 1341 | } |
| 1342 | |
| 1343 | static int Tcl_ops_getNumElements(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1344 | { |
| 1345 | wrapper->resetCommandLine(argc, 1, argv); |
| 1346 | |
| 1347 | if (OPS_getNumElements() < 0) return TCL_ERROR; |
| 1348 | |
| 1349 | return TCL_OK; |
| 1350 | } |
| 1351 | |
| 1352 | static int Tcl_ops_getEleClassTags(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1353 | { |
nothing calls this directly
no test coverage detected