* Check the filtered point to be editlocked before removing from the * current control network. * * @author Sharmila Prasad (7/22/2011) * * @param pindex - Control Point index */
| 89 | * @param pindex - Control Point index |
| 90 | */ |
| 91 | void ControlNetFilter::FilterOutPoint(int pindex){ |
| 92 | if ( mCNet->GetPoint(pindex)->IsEditLocked() ) { |
| 93 | mCNet->GetPoint(pindex)->SetEditLock(false); |
| 94 | } |
| 95 | mCNet->DeletePoint(pindex); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Delete the network for an Image given Serial Number for all the |
nothing calls this directly
no test coverage detected