MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / Get

Method Get

sourcecommon/unilist.cpp:122–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120//---------------------------------------------------------------------------
121template <class T>
122T * 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//---------------------------------------------------------------------------
135template <class T>
136void TUniList<T>::Set(int i, T * p)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected