mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
3b155bfe38
* Open discussion * Move annotations of header-implemented functions back to `.h` files * Adjust `README.md` * Relocate annotation * linter * Comment markers in headers only, rename script, update github actions * type hint compat * Rename github action, better argparse for linter * Type hints, working test for byname ignore * Move annotation * CI rename and enable warnfail, enforce mode always on * Two step linting * or one step * continue on error * two jobs instead * Fixes --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#ifndef MXPRESENTERLIST_H
|
|
#define MXPRESENTERLIST_H
|
|
|
|
#include "mxlist.h"
|
|
|
|
class MxPresenter;
|
|
|
|
// VTABLE: LEGO1 0x100d62f0
|
|
// class MxPtrList<MxPresenter>
|
|
|
|
// VTABLE: LEGO1 0x100d6308
|
|
// SIZE 0x18
|
|
class MxPresenterList : public MxPtrList<MxPresenter> {
|
|
public:
|
|
virtual MxS8 Compare(MxPresenter*, MxPresenter*) override; // vtable+0x14
|
|
};
|
|
|
|
// 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){};
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d6350
|
|
// class MxCollection<MxPresenter *>
|
|
|
|
// VTABLE: LEGO1 0x100d6368
|
|
// class MxList<MxPresenter *>
|
|
|
|
// 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 *>
|
|
|
|
// SYNTHETIC: LEGO1 0x1001cf70
|
|
// MxCollection<MxPresenter *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001cfe0
|
|
// MxList<MxPresenter *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d090
|
|
// MxPtrList<MxPresenter>::`scalar deleting destructor'
|
|
|
|
#endif // MXPRESENTERLIST_H
|