| 147 | //--------------------------------------------------------------------------- |
| 148 | template <class T> |
| 149 | int TUniList<T>::get_count() |
| 150 | { |
| 151 | SetBusy(true); |
| 152 | try |
| 153 | { |
| 154 | return l->Count; |
| 155 | } |
| 156 | __finally |
| 157 | { SetBusy(false); } |
| 158 | } |
| 159 | //--------------------------------------------------------------------------- |
| 160 | template <class T> |
| 161 | void TUniList<T>::EnableMultiTreading(void) |
nothing calls this directly
no outgoing calls
no test coverage detected