| 120 | //--------------------------------------------------------------------------- |
| 121 | template <class T> |
| 122 | T * TUniList<T>::Get(int i) |
| 123 | { |
| 124 | SetBusy(true); |
| 125 | try |
| 126 | { |
| 127 | if( i>=0 && i<l->Count ) |
| 128 | return (T *)l->Items[i]; |
| 129 | return NULL; |
| 130 | } |
| 131 | __finally |
| 132 | { SetBusy(false); } |
| 133 | } |
| 134 | //--------------------------------------------------------------------------- |
| 135 | template <class T> |
| 136 | void TUniList<T>::Set(int i, T * p) |
nothing calls this directly
no outgoing calls
no test coverage detected