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

Method Clear

sourcecommon/unilist.cpp:23–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21//---------------------------------------------------------------------------
22template <class T>
23void TUniList<T>::Clear(void)
24{
25 SetBusy(true);
26 try
27 {
28 for(int i=0, c=l->Count; i<c; i++)
29 delete (T *)l->Items[i];
30 l->Clear();
31 }
32 __finally
33 { SetBusy(false); }
34}
35//---------------------------------------------------------------------------
36template <class T>
37T * TUniList<T>::Add(T * p)

Callers 1

rsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected