| 61 | //--------------------------------------------------------------------------- |
| 62 | template <class T> |
| 63 | void TUniList<T>::Delete(T * p) |
| 64 | { |
| 65 | SetBusy(true); |
| 66 | try |
| 67 | { |
| 68 | l->Remove(p); |
| 69 | delete p; |
| 70 | } |
| 71 | __finally |
| 72 | { SetBusy(false); } |
| 73 | } |
| 74 | //--------------------------------------------------------------------------- |
| 75 | template <class T> |
| 76 | void TUniList<T>::Delete(int i) |
no outgoing calls
no test coverage detected