From 5c6a48b2ff362a70416a6a00fda7d06e0f276f2d Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Sat, 1 Jul 2023 02:43:29 +0100 Subject: i am in hell --- src/T2DLL/T2RoutingTable.h | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'src/T2DLL/T2RoutingTable.h') diff --git a/src/T2DLL/T2RoutingTable.h b/src/T2DLL/T2RoutingTable.h index d42616b..f2c3691 100644 --- a/src/T2DLL/T2RoutingTable.h +++ b/src/T2DLL/T2RoutingTable.h @@ -2,7 +2,7 @@ #include "common.h" #include "LArray.h" -class AFX_EXT_CLASS T2RoutingTable : private LArray { +class AFX_CLASS_EXPORT T2RoutingTable : private LArray { public: T2RoutingTable(T2FloorInfo* inFloorInfo, T2FloorPtrList* inFloorPtrList, int inWhichTable); virtual ~T2RoutingTable(); @@ -33,24 +33,3 @@ protected: T2FloorInfo *mFloorInfo; }; -class AFX_EXT_CLASS T2RoutingTableElem { -public: - T2RoutingTableElem(); - ~T2RoutingTableElem(); - BOOL IsStopFloor() const; - void SetTable(unsigned int inNextFloorID, int inFinalHPos); - BOOL IsSetTable(unsigned int inNextFloorID, unsigned int inScore, int inTime, int inFinalHPos); - BOOL HasNextRoute(unsigned int inFloorID) const; - - unsigned int GetNextFloorID() const { return mNextFloorID; } - unsigned int GetScore() const { return mScore; } - int GetTime() const { return mTime; } - int GetFinalHPos() const { return mFinalHPos; } - BOOL HasRoute() const { return (mNextFloorID != 0); } - -protected: - unsigned int mNextFloorID; - unsigned int mScore; - int mTime; - int mFinalHPos; -}; -- cgit v1.2.3