[Client] Mark derived processor classes as final

sol2-server-rewrite
Koncord 7 years ago
parent 2cb0ea20f0
commit 7748e582a8

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorAI : public ActorProcessor
class ProcessorActorAI final: public ActorProcessor
{
public:
ProcessorActorAI()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorActorAnimFlags : public ActorProcessor
class ProcessorActorAnimFlags final: public ActorProcessor
{
public:
ProcessorActorAnimFlags()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorActorAnimPlay : public ActorProcessor
class ProcessorActorAnimPlay final: public ActorProcessor
{
public:
ProcessorActorAnimPlay()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorAttack : public ActorProcessor
class ProcessorActorAttack final: public ActorProcessor
{
public:
ProcessorActorAttack()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorActorAuthority : public ActorProcessor
class ProcessorActorAuthority final: public ActorProcessor
{
public:
ProcessorActorAuthority()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorActorCellChange : public ActorProcessor
class ProcessorActorCellChange final: public ActorProcessor
{
public:
ProcessorActorCellChange()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorDeath : public ActorProcessor
class ProcessorActorDeath final: public ActorProcessor
{
public:
ProcessorActorDeath()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorEquipment : public ActorProcessor
class ProcessorActorEquipment final: public ActorProcessor
{
public:
ProcessorActorEquipment()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorActorList : public ActorProcessor
class ProcessorActorList final: public ActorProcessor
{
public:
ProcessorActorList()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorPosition : public ActorProcessor
class ProcessorActorPosition final: public ActorProcessor
{
public:
ProcessorActorPosition()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorSpeech : public ActorProcessor
class ProcessorActorSpeech final: public ActorProcessor
{
public:
ProcessorActorSpeech()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorStatsDynamic : public ActorProcessor
class ProcessorActorStatsDynamic final: public ActorProcessor
{
public:
ProcessorActorStatsDynamic()

@ -7,7 +7,7 @@
namespace mwmp
{
class ProcessorActorTest : public ActorProcessor
class ProcessorActorTest final: public ActorProcessor
{
public:
ProcessorActorTest()

@ -12,7 +12,7 @@
namespace mwmp
{
class ProcessorChatMessage : public PlayerProcessor
class ProcessorChatMessage final: public PlayerProcessor
{
public:
ProcessorChatMessage()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorGUIMessageBox : public PlayerProcessor
class ProcessorGUIMessageBox final: public PlayerProcessor
{
public:
ProcessorGUIMessageBox()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorGUIWindow : public PlayerProcessor
class ProcessorGUIWindow final: public PlayerProcessor
{
public:
ProcessorGUIWindow()

@ -8,7 +8,7 @@
namespace mwmp
{
class ProcessorGameSettings : public PlayerProcessor
class ProcessorGameSettings final: public PlayerProcessor
{
public:
ProcessorGameSettings()

@ -12,7 +12,7 @@
namespace mwmp
{
class ProcessorGameTime : public PlayerProcessor
class ProcessorGameTime final: public PlayerProcessor
{
public:
ProcessorGameTime()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorGameWeather : public PlayerProcessor
class ProcessorGameWeather final: public PlayerProcessor
{
public:
ProcessorGameWeather()
@ -13,7 +13,7 @@ namespace mwmp
BPP_INIT(ID_GAME_WEATHER)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
void Do(PlayerPacket &packet, BasePlayer *player) final
{
// Placeholder to be filled in later
}

@ -9,7 +9,7 @@
namespace mwmp
{
class ProcessorHandshake : public PlayerProcessor
class ProcessorHandshake final: public PlayerProcessor
{
public:
ProcessorHandshake()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerAnimFlags : public PlayerProcessor
class ProcessorPlayerAnimFlags final: public PlayerProcessor
{
public:
ProcessorPlayerAnimFlags()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerAnimPlay : public PlayerProcessor
class ProcessorPlayerAnimPlay final: public PlayerProcessor
{
public:
ProcessorPlayerAnimPlay()

@ -17,7 +17,7 @@
namespace mwmp
{
class ProcessorPlayerAttack : public PlayerProcessor
class ProcessorPlayerAttack final: public PlayerProcessor
{
public:
ProcessorPlayerAttack()

@ -12,7 +12,7 @@
namespace mwmp
{
class ProcessorPlayerAttribute : public PlayerProcessor
class ProcessorPlayerAttribute final: public PlayerProcessor
{
public:
ProcessorPlayerAttribute()

@ -9,7 +9,7 @@
namespace mwmp
{
class ProcessorPlayerBaseInfo : public PlayerProcessor
class ProcessorPlayerBaseInfo final: public PlayerProcessor
{
public:
ProcessorPlayerBaseInfo()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerBook : public PlayerProcessor
class ProcessorPlayerBook final: public PlayerProcessor
{
public:
ProcessorPlayerBook()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerBounty : public PlayerProcessor
class ProcessorPlayerBounty final: public PlayerProcessor
{
public:
ProcessorPlayerBounty()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerCellChange : public PlayerProcessor
class ProcessorPlayerCellChange final: public PlayerProcessor
{
public:
ProcessorPlayerCellChange()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerCellState : public PlayerProcessor
class ProcessorPlayerCellState final: public PlayerProcessor
{
public:
ProcessorPlayerCellState()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerCharClass : public PlayerProcessor
class ProcessorPlayerCharClass final: public PlayerProcessor
{
public:
ProcessorPlayerCharClass()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerCharGen : public PlayerProcessor
class ProcessorPlayerCharGen final: public PlayerProcessor
{
public:
ProcessorPlayerCharGen()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerDeath : public PlayerProcessor
class ProcessorPlayerDeath final: public PlayerProcessor
{
public:
ProcessorPlayerDeath()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerDisposition : public PlayerProcessor
class ProcessorPlayerDisposition final: public PlayerProcessor
{
public:
ProcessorPlayerDisposition()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerEquipment : public PlayerProcessor
class ProcessorPlayerEquipment final: public PlayerProcessor
{
public:
ProcessorPlayerEquipment()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerFaction : public PlayerProcessor
class ProcessorPlayerFaction final: public PlayerProcessor
{
public:
ProcessorPlayerFaction()

@ -9,7 +9,7 @@
namespace mwmp
{
class ProcessorPlayerInventory : public PlayerProcessor
class ProcessorPlayerInventory final: public PlayerProcessor
{
public:
ProcessorPlayerInventory()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerJail : public PlayerProcessor
class ProcessorPlayerJail final: public PlayerProcessor
{
public:
ProcessorPlayerJail()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerJournal : public PlayerProcessor
class ProcessorPlayerJournal final: public PlayerProcessor
{
public:
ProcessorPlayerJournal()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerKillCount : public PlayerProcessor
class ProcessorPlayerKillCount final: public PlayerProcessor
{
public:
ProcessorPlayerKillCount()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerLevel : public PlayerProcessor
class ProcessorPlayerLevel final: public PlayerProcessor
{
public:
ProcessorPlayerLevel()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerMap : public PlayerProcessor
class ProcessorPlayerMap final: public PlayerProcessor
{
public:
ProcessorPlayerMap()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerPosition : public PlayerProcessor
class ProcessorPlayerPosition final: public PlayerProcessor
{
public:
ProcessorPlayerPosition()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerRegionAuthority : public PlayerProcessor
class ProcessorPlayerRegionAuthority final: public PlayerProcessor
{
public:
ProcessorPlayerRegionAuthority()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerRest : public PlayerProcessor
class ProcessorPlayerRest final: public PlayerProcessor
{
public:
ProcessorPlayerRest()

@ -11,7 +11,7 @@
namespace mwmp
{
class ProcessorPlayerResurrect : public PlayerProcessor
class ProcessorPlayerResurrect final: public PlayerProcessor
{
public:
ProcessorPlayerResurrect()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerShapeshift : public PlayerProcessor
class ProcessorPlayerShapeshift final: public PlayerProcessor
{
public:
ProcessorPlayerShapeshift()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerSkill : public PlayerProcessor
class ProcessorPlayerSkill final: public PlayerProcessor
{
public:
ProcessorPlayerSkill()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerSpeech : public PlayerProcessor
class ProcessorPlayerSpeech final: public PlayerProcessor
{
public:
ProcessorPlayerSpeech()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerSpellbook : public PlayerProcessor
class ProcessorPlayerSpellbook final: public PlayerProcessor
{
public:
ProcessorPlayerSpellbook()

@ -10,7 +10,7 @@
namespace mwmp
{
class ProcessorPlayerStatsDynamic : public PlayerProcessor
class ProcessorPlayerStatsDynamic final: public PlayerProcessor
{
public:
ProcessorPlayerStatsDynamic()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorPlayerTopic : public PlayerProcessor
class ProcessorPlayerTopic final: public PlayerProcessor
{
public:
ProcessorPlayerTopic()

@ -12,7 +12,7 @@
namespace mwmp
{
class ProcessorUserDisconnected : public PlayerProcessor
class ProcessorUserDisconnected final: public PlayerProcessor
{
public:
ProcessorUserDisconnected()

@ -12,7 +12,7 @@
namespace mwmp
{
class BaseObjectProcessor : public WorldProcessor
class BaseObjectProcessor: public WorldProcessor
{
public:
virtual void Do(WorldPacket &packet, WorldEvent &event)

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorConsoleCommand : public WorldProcessor
class ProcessorConsoleCommand final: public WorldProcessor
{
public:
ProcessorConsoleCommand()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorMusicPlay : public WorldProcessor
class ProcessorMusicPlay final: public WorldProcessor
{
public:
ProcessorMusicPlay()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorScriptGlobalShort : public WorldProcessor
class ProcessorScriptGlobalShort final: public WorldProcessor
{
public:
ProcessorScriptGlobalShort()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorScriptMemberShort : public WorldProcessor
class ProcessorScriptMemberShort final: public WorldProcessor
{
public:
ProcessorScriptMemberShort()

@ -5,7 +5,7 @@
namespace mwmp
{
class ProcessorVideoPlay : public WorldProcessor
class ProcessorVideoPlay final: public WorldProcessor
{
public:
ProcessorVideoPlay()

Loading…
Cancel
Save