* Turn on/off the copying of the field specified by name. * During the copying/passing, the following rules are followed for each * array: * 1. If the copy flag for an array is set (on or off), it is applied. * This overrides rule 2. * 2. If CopyAllOn is set, copy the array. * If CopyAllOff is set, do not copy the array. */
| 225 | * If CopyAllOff is set, do not copy the array. |
| 226 | */ |
| 227 | void CopyFieldOn(const char* name) { this->CopyFieldOnOff(name, 1); } |
| 228 | void CopyFieldOff(const char* name) { this->CopyFieldOnOff(name, 0); } |
| 229 | |
| 230 | /** |
nothing calls this directly
no test coverage detected