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>
89 lines
2.2 KiB
C++
89 lines
2.2 KiB
C++
#ifndef LEGOWORLDLIST_H
|
|
#define LEGOWORLDLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxtypes.h"
|
|
|
|
class LegoWorld;
|
|
|
|
// VTABLE: LEGO1 0x100d8700
|
|
// class MxCollection<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8718
|
|
// class MxList<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8730
|
|
// class MxPtrList<LegoWorld>
|
|
|
|
// VTABLE: LEGO1 0x100d8680
|
|
// SIZE 0x18
|
|
class LegoWorldList : public MxPtrList<LegoWorld> {
|
|
public:
|
|
LegoWorldList(MxBool p_ownership = FALSE) : MxPtrList<LegoWorld>(p_ownership) {}
|
|
|
|
// FUNCTION: LEGO1 0x100598d0
|
|
MxS8 Compare(LegoWorld* p_a, LegoWorld* p_b) override { return p_a == p_b ? 0 : p_a < p_b ? -1 : 1; } // vtable+0x14
|
|
|
|
// SYNTHETIC: LEGO1 0x10059a00
|
|
// LegoWorldList::`scalar deleting destructor'
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d75b8
|
|
// class MxListCursor<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d7588
|
|
// class MxPtrListCursor<LegoWorld>
|
|
|
|
// VTABLE: LEGO1 0x100d75a0
|
|
// SIZE 0x10
|
|
class LegoWorldListCursor : public MxPtrListCursor<LegoWorld> {
|
|
public:
|
|
LegoWorldListCursor(LegoWorldList* p_list) : MxPtrListCursor<LegoWorld>(p_list){};
|
|
};
|
|
|
|
// SYNTHETIC: LEGO1 0x1003e870
|
|
// LegoWorldListCursor::`scalar deleting destructor'
|
|
|
|
// FUNCTION: LEGO1 0x1003e8e0
|
|
// MxPtrListCursor<LegoWorld>::~MxPtrListCursor<LegoWorld>
|
|
|
|
// SYNTHETIC: LEGO1 0x1003e930
|
|
// MxListCursor<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1003e9a0
|
|
// MxPtrListCursor<LegoWorld>::`scalar deleting destructor'
|
|
|
|
// FUNCTION: LEGO1 0x1003ea10
|
|
// MxListCursor<LegoWorld *>::~MxListCursor<LegoWorld *>
|
|
|
|
// FUNCTION: LEGO1 0x1003ea60
|
|
// LegoWorldListCursor::~LegoWorldListCursor
|
|
|
|
// TEMPLATE: LEGO1 0x100598f0
|
|
// MxCollection<LegoWorld *>::Compare
|
|
|
|
// TEMPLATE: LEGO1 0x10059900
|
|
// MxCollection<LegoWorld *>::~MxCollection<LegoWorld *>
|
|
|
|
// TEMPLATE: LEGO1 0x10059950
|
|
// MxCollection<LegoWorld *>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x10059960
|
|
// MxList<LegoWorld *>::~MxList<LegoWorld *>
|
|
|
|
// TEMPLATE: LEGO1 0x100599f0
|
|
// MxPtrList<LegoWorld>::Destroy
|
|
|
|
// SYNTHETIC: LEGO1 0x10059ac0
|
|
// MxCollection<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059b30
|
|
// MxList<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059be0
|
|
// MxPtrList<LegoWorld>::`scalar deleting destructor'
|
|
|
|
// TEMPLATE: LEGO1 0x1005b740
|
|
// MxList<LegoWorld *>::DeleteEntry
|
|
|
|
#endif // LEGOWORLDLIST_H
|