mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
b77cd067d3
* reccmp: Add ability to compare template instantiations * Add example of template instantiation comparison. * merge * Add template compare annotations for MxList instances --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
38 lines
824 B
C++
38 lines
824 B
C++
#ifndef MXPRESENTERLIST_H
|
|
#define MXPRESENTERLIST_H
|
|
|
|
#include "mxlist.h"
|
|
|
|
class MxPresenter;
|
|
|
|
// Unclear what the purpose of this class is
|
|
// VTABLE 0x100d62f0
|
|
// SIZE 0x18
|
|
class MxPresenterListParent : public MxList<MxPresenter>
|
|
{
|
|
public:
|
|
MxPresenterListParent() {
|
|
m_customDestructor = Destroy;
|
|
}
|
|
};
|
|
|
|
// VTABLE 0x100d6308
|
|
// SIZE 0x18
|
|
class MxPresenterList : public MxPresenterListParent
|
|
{
|
|
public:
|
|
virtual MxS8 Compare(MxPresenter *, MxPresenter *); // +0x14
|
|
};
|
|
|
|
typedef MxListCursorChildChild<MxPresenter> MxPresenterListCursor;
|
|
|
|
// OFFSET: LEGO1 0x1001cd30 TEMPLATE
|
|
// MxListParent<MxPresenter>::Destroy
|
|
|
|
// OFFSET: LEGO1 0x1001cdd0 TEMPLATE
|
|
// MxListParent<MxPresenter>::~MxListParent<MxPresenter>
|
|
|
|
// OFFSET: LEGO1 0x1001ce20 TEMPLATE
|
|
// MxList<MxPresenter>::~MxList<MxPresenter>
|
|
|
|
#endif // MXPRESENTERLIST_H
|