| 166 | |
| 167 | |
| 168 | template <class T> void Array<T>::operator =(Array<T> &Src) |
| 169 | { |
| 170 | Reset(); |
| 171 | Alloc(Src.BufSize); |
| 172 | if (Src.BufSize!=0) |
| 173 | memcpy((void *)Buffer,(void *)Src.Buffer,Src.BufSize*sizeof(T)); |
| 174 | } |
| 175 | |
| 176 | |
| 177 | template <class T> void Array<T>::Push(T Item) |
nothing calls this directly
no outgoing calls
no test coverage detected