2023-09-17 00:18:56 -04:00
|
|
|
#ifndef MXPRESENTERLIST_H
|
|
|
|
#define MXPRESENTERLIST_H
|
|
|
|
|
|
|
|
#include "mxlist.h"
|
2023-12-20 20:09:05 -05:00
|
|
|
#include "mxpresenter.h"
|
2023-09-17 00:18:56 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d62f0
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxPtrList<MxPresenter>
|
2023-09-17 00:18:56 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6308
|
2023-09-17 00:18:56 -04:00
|
|
|
// SIZE 0x18
|
2023-11-19 07:23:30 -05:00
|
|
|
class MxPresenterList : public MxPtrList<MxPresenter> {
|
2023-09-17 00:18:56 -04:00
|
|
|
public:
|
2023-12-20 20:09:05 -05:00
|
|
|
MxPresenterList(MxBool p_ownership = FALSE) : MxPtrList<MxPresenter>(p_ownership) {}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1001cd00
|
|
|
|
virtual MxS8 Compare(MxPresenter* p_a, MxPresenter* p_b) override
|
|
|
|
{
|
|
|
|
return p_a == p_b ? 0 : p_a < p_b ? -1 : 1;
|
|
|
|
}; // vtable+0x14
|
2024-01-18 08:34:14 -05:00
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x1001ceb0
|
|
|
|
// MxPresenterList::`scalar deleting destructor'
|
2023-09-17 00:18:56 -04:00
|
|
|
};
|
|
|
|
|
2023-12-07 14:14:49 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6488
|
|
|
|
// class MxListCursor<MxPresenter *>
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100d6530
|
|
|
|
// class MxPtrListCursor<MxPresenter>
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100d6470
|
|
|
|
class MxPresenterListCursor : public MxPtrListCursor<MxPresenter> {
|
|
|
|
public:
|
|
|
|
MxPresenterListCursor(MxPresenterList* p_list) : MxPtrListCursor<MxPresenter>(p_list){};
|
|
|
|
};
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6350
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxCollection<MxPresenter *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6368
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxList<MxPresenter *>
|
2023-09-29 14:40:46 -04:00
|
|
|
|
2023-12-12 14:27:17 -05:00
|
|
|
// TEMPLATE: LEGO1 0x1001cd20
|
|
|
|
// MxCollection<MxPresenter *>::Compare
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x1001cd30
|
|
|
|
// MxCollection<MxPresenter *>::Destroy
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x1001cd40
|
|
|
|
// MxList<MxPresenter *>::MxList<MxPresenter *>
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x1001cdd0
|
|
|
|
// MxCollection<MxPresenter *>::~MxCollection<MxPresenter *>
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x1001ce20
|
|
|
|
// MxList<MxPresenter *>::~MxList<MxPresenter *>
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// TEMPLATE: LEGO1 0x1001cf20
|
|
|
|
// MxPtrList<MxPresenter>::~MxPtrList<MxPresenter>
|
|
|
|
|
2023-12-12 14:27:17 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x1001cf70
|
|
|
|
// MxCollection<MxPresenter *>::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x1001cfe0
|
|
|
|
// MxList<MxPresenter *>::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d090
|
|
|
|
// MxPtrList<MxPresenter>::`scalar deleting destructor'
|
|
|
|
|
2023-09-17 00:18:56 -04:00
|
|
|
#endif // MXPRESENTERLIST_H
|