mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 00:31:16 +00:00
Remove old code
This commit is contained in:
parent
adf7028832
commit
77a60b19f6
@ -152,21 +152,6 @@ inline void MxList<T>::DeleteAll()
|
|||||||
m_first = NULL;
|
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>
|
template <class T>
|
||||||
inline MxListEntry<T>* MxList<T>::_InsertEntry(T p_newobj, MxListEntry<T>* p_prev, MxListEntry<T>* p_next)
|
inline MxListEntry<T>* MxList<T>::_InsertEntry(T p_newobj, MxListEntry<T>* p_prev, MxListEntry<T>* p_next)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user