Remove old code

This commit is contained in:
Christian Semmler 2023-11-04 09:29:37 -04:00
parent adf7028832
commit 77a60b19f6

View File

@ -152,21 +152,6 @@ inline void MxList<T>::DeleteAll()
m_first = NULL;
}
template <class T>
inline void MxList<T>::Append(T p_newobj)
{
MxListEntry<T>* currentLast = this->m_last;
MxListEntry<T>* newEntry = new MxListEntry<T>(p_newobj, currentLast);
if (currentLast)
currentLast->SetNext(newEntry);
else
this->m_first = newEntry;
this->m_last = newEntry;
this->m_count++;
}
template <class T>
inline MxListEntry<T>* MxList<T>::_InsertEntry(T p_newobj, MxListEntry<T>* p_prev, MxListEntry<T>* p_next)
{