mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
9e686e2a87
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed
.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
101 lines
2.6 KiB
C++
101 lines
2.6 KiB
C++
#ifndef MXPRESENTERLIST_H
|
|
#define MXPRESENTERLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxpresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d62f0
|
|
// class MxPtrList<MxPresenter>
|
|
|
|
// VTABLE: LEGO1 0x100d6308
|
|
// SIZE 0x18
|
|
class MxPresenterList : public MxPtrList<MxPresenter> {
|
|
public:
|
|
MxPresenterList(MxBool p_ownership = FALSE) : MxPtrList<MxPresenter>(p_ownership) {}
|
|
|
|
// FUNCTION: LEGO1 0x1001cd00
|
|
MxS8 Compare(MxPresenter* p_a, MxPresenter* p_b) override
|
|
{
|
|
return p_a == p_b ? 0 : p_a < p_b ? -1 : 1;
|
|
} // vtable+0x14
|
|
|
|
// SYNTHETIC: LEGO1 0x1001ceb0
|
|
// MxPresenterList::`scalar deleting destructor'
|
|
};
|
|
|
|
// 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 *>
|
|
|
|
// TEMPLATE: LEGO1 0x1001cf20
|
|
// MxPtrList<MxPresenter>::~MxPtrList<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'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d100
|
|
// MxPresenterList::~MxPresenterList
|
|
|
|
// SYNTHETIC: LEGO1 0x1001eed0
|
|
// MxPresenterListCursor::`scalar deleting destructor'
|
|
|
|
// TEMPLATE: LEGO1 0x1001ef40
|
|
// MxPtrListCursor<MxPresenter>::~MxPtrListCursor<MxPresenter>
|
|
|
|
// SYNTHETIC: LEGO1 0x1001ef90
|
|
// MxListCursor<MxPresenter *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001f000
|
|
// MxPtrListCursor<MxPresenter>::`scalar deleting destructor'
|
|
|
|
// TEMPLATE: LEGO1 0x1001f070
|
|
// MxListCursor<MxPresenter *>::~MxListCursor<MxPresenter *>
|
|
|
|
// FUNCTION: LEGO1 0x1001f0c0
|
|
// MxPresenterListCursor::~MxPresenterListCursor
|
|
|
|
// TEMPLATE: LEGO1 0x10020760
|
|
// MxListCursor<MxPresenter *>::MxListCursor<MxPresenter *>
|
|
|
|
// TEMPLATE: LEGO1 0x10022380
|
|
// MxList<MxPresenter *>::InsertEntry
|
|
|
|
// TEMPLATE: LEGO1 0x100225e0
|
|
// MxList<MxPresenter *>::DeleteEntry
|
|
|
|
#endif // MXPRESENTERLIST_H
|