| 9007 | } |
| 9008 | |
| 9009 | int |
| 9010 | getNumElements(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 9011 | { |
| 9012 | char buffer[20]; |
| 9013 | |
| 9014 | sprintf(buffer, "%d ", theDomain.getNumElements()); |
| 9015 | Tcl_AppendResult(interp, buffer, NULL); |
| 9016 | |
| 9017 | return TCL_OK; |
| 9018 | } |
| 9019 | |
| 9020 | int |
| 9021 | getEleClassTags(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
nothing calls this directly
no test coverage detected