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

Method Set

sourcecommon/unilist.cpp:136–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134//---------------------------------------------------------------------------
135template <class T>
136void TUniList<T>::Set(int i, T * p)
137{
138 SetBusy(true);
139 try
140 {
141 if( i>=0 && i<l->Count )
142 l->Items[i] = p;
143 }
144 __finally
145 { SetBusy(false); }
146}
147//---------------------------------------------------------------------------
148template <class T>
149int TUniList<T>::get_count()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected