mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -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 96c4c65fedbc4102837f4bcbbb9ee83a7d14cba3. * 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>
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
#ifndef LEGOPATHCONTROLLERLIST_H
|
|
#define LEGOPATHCONTROLLERLIST_H
|
|
|
|
#include "legopathcontroller.h"
|
|
#include "mxlist.h"
|
|
#include "mxtypes.h"
|
|
|
|
// VTABLE: LEGO1 0x100d6320
|
|
// class MxPtrList<LegoPathController>
|
|
|
|
// VTABLE: LEGO1 0x100d6338
|
|
// SIZE 0x18
|
|
class LegoPathControllerList : public MxPtrList<LegoPathController> {
|
|
public:
|
|
LegoPathControllerList(MxBool p_ownership = FALSE) : MxPtrList<LegoPathController>(p_ownership) {}
|
|
|
|
// FUNCTION: LEGO1 0x1001d210
|
|
MxS8 Compare(LegoPathController* p_a, LegoPathController* p_b) override
|
|
{
|
|
return p_a == p_b ? 0 : p_a < p_b ? -1 : 1;
|
|
} // vtable+0x14
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d3d0
|
|
// LegoPathControllerList::`scalar deleting destructor'
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d6380
|
|
// class MxCollection<LegoPathController *>
|
|
|
|
// VTABLE: LEGO1 0x100d6398
|
|
// class MxList<LegoPathController *>
|
|
|
|
// TEMPLATE: LEGO1 0x1001d230
|
|
// MxCollection<LegoPathController *>::Compare
|
|
|
|
// TEMPLATE: LEGO1 0x1001d240
|
|
// MxList<LegoPathController *>::MxList<LegoPathController *>
|
|
|
|
// TEMPLATE: LEGO1 0x1001d2d0
|
|
// MxCollection<LegoPathController *>::~MxCollection<LegoPathController *>
|
|
|
|
// TEMPLATE: LEGO1 0x1001d320
|
|
// MxCollection<LegoPathController *>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x1001d330
|
|
// MxList<LegoPathController *>::~MxList<LegoPathController *>
|
|
|
|
// TEMPLATE: LEGO1 0x1001d3c0
|
|
// MxPtrList<LegoPathController>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x1001d440
|
|
// MxPtrList<LegoPathController>::~MxPtrList<LegoPathController>
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d490
|
|
// MxCollection<LegoPathController *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d500
|
|
// MxList<LegoPathController *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d5b0
|
|
// MxPtrList<LegoPathController>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1001d620
|
|
// LegoPathControllerList::~LegoPathControllerList
|
|
|
|
#endif // LEGOPATHCONTROLLERLIST_H
|