| 2632 | |
| 2633 | |
| 2634 | int |
| 2635 | Domain::removeRecorders(void) |
| 2636 | { |
| 2637 | for (int i=0; i<numRecorders; i++) |
| 2638 | if (theRecorders[i] != 0) |
| 2639 | delete theRecorders[i]; |
| 2640 | |
| 2641 | if (theRecorders != 0) { |
| 2642 | delete [] theRecorders; |
| 2643 | } |
| 2644 | |
| 2645 | theRecorders = 0; |
| 2646 | numRecorders = 0; |
| 2647 | return 0; |
| 2648 | } |
| 2649 | |
| 2650 | int Domain::flushRecorders() { |
| 2651 | for (int i = 0; i < numRecorders; i++) { |
no outgoing calls
no test coverage detected