From e97dac77931973d01dc7e3154d1a0981f6f6f365 Mon Sep 17 00:00:00 2001 From: Koncord Date: Sat, 9 Dec 2017 10:20:55 +0800 Subject: [PATCH] [Server] Mark derived processor classes as final --- apps/openmw-mp/processors/actor/ProcessorActorAI.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorAnimFlags.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorAnimPlay.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorAttack.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorCellChange.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorDeath.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorEquipment.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorList.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorPosition.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorSpeech.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorStatsDynamic.hpp | 2 +- apps/openmw-mp/processors/actor/ProcessorActorTest.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorChatMsg.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorGUIMessageBox.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorGameWeather.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerAnimPlay.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerAttack.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerAttribute.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerBook.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerBounty.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerCellState.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerCharClass.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerCharGen.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerDeath.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerDisposition.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerEquipment.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerFaction.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerInventory.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerJournal.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerLevel.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerPosition.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerRest.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerResurrect.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerShapeshift.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerSkill.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerSpeech.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerSpellbook.hpp | 2 +- .../openmw-mp/processors/player/ProcessorPlayerStatsDynamic.hpp | 2 +- apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorContainer.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorDoorState.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorMusicPlay.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectAnimPlay.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectDelete.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectLock.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectMove.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectPlace.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectRotate.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectScale.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectSpawn.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectState.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorObjectTrap.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorScriptGlobalShort.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorScriptLocalFloat.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorScriptLocalShort.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorScriptMemberShort.hpp | 2 +- apps/openmw-mp/processors/world/ProcessorVideoPlay.hpp | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/apps/openmw-mp/processors/actor/ProcessorActorAI.hpp b/apps/openmw-mp/processors/actor/ProcessorActorAI.hpp index bf4baf21b..bed23243a 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorAI.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorAI.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorAI : public ActorProcessor + class ProcessorActorAI final: public ActorProcessor { public: ProcessorActorAI() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorAnimFlags.hpp b/apps/openmw-mp/processors/actor/ProcessorActorAnimFlags.hpp index 869aeb4e4..1d064fbea 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorAnimFlags.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorAnimFlags.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorAnimFlags : public ActorProcessor + class ProcessorActorAnimFlags final: public ActorProcessor { public: ProcessorActorAnimFlags() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorAnimPlay.hpp b/apps/openmw-mp/processors/actor/ProcessorActorAnimPlay.hpp index 886b8fb60..b8b3462e5 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorAnimPlay.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorAnimPlay.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorAnimPlay : public ActorProcessor + class ProcessorActorAnimPlay final: public ActorProcessor { public: ProcessorActorAnimPlay() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorAttack.hpp b/apps/openmw-mp/processors/actor/ProcessorActorAttack.hpp index 9594a9720..0c0f488b2 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorAttack.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorAttack.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorAttack : public ActorProcessor + class ProcessorActorAttack final: public ActorProcessor { public: ProcessorActorAttack() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorCellChange.hpp b/apps/openmw-mp/processors/actor/ProcessorActorCellChange.hpp index 19a3f6269..26ead25df 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorCellChange.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorCellChange.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorCellChange : public ActorProcessor + class ProcessorActorCellChange final: public ActorProcessor { public: ProcessorActorCellChange() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorDeath.hpp b/apps/openmw-mp/processors/actor/ProcessorActorDeath.hpp index 9533619d8..2b3baebec 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorDeath.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorDeath.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorDeath : public ActorProcessor + class ProcessorActorDeath final: public ActorProcessor { public: ProcessorActorDeath() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorEquipment.hpp b/apps/openmw-mp/processors/actor/ProcessorActorEquipment.hpp index 400a0a3c1..6fb63562c 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorEquipment.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorEquipment.hpp @@ -6,7 +6,7 @@ namespace mwmp { - class ProcessorActorEquipment : public ActorProcessor + class ProcessorActorEquipment final: public ActorProcessor { public: ProcessorActorEquipment() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorList.hpp b/apps/openmw-mp/processors/actor/ProcessorActorList.hpp index 33687466e..42db7c70c 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorList.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorList.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorList : public ActorProcessor + class ProcessorActorList final: public ActorProcessor { public: ProcessorActorList() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorPosition.hpp b/apps/openmw-mp/processors/actor/ProcessorActorPosition.hpp index 2a4c11d0b..1850dfd07 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorPosition.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorPosition.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorPosition : public ActorProcessor + class ProcessorActorPosition final: public ActorProcessor { public: ProcessorActorPosition() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorSpeech.hpp b/apps/openmw-mp/processors/actor/ProcessorActorSpeech.hpp index 67bca50b6..9b496ed8f 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorSpeech.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorSpeech.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorSpeech : public ActorProcessor + class ProcessorActorSpeech final: public ActorProcessor { public: ProcessorActorSpeech() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorStatsDynamic.hpp b/apps/openmw-mp/processors/actor/ProcessorActorStatsDynamic.hpp index ce7c45c0c..8a2b3f67c 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorStatsDynamic.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorStatsDynamic.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorStatsDynamic : public ActorProcessor + class ProcessorActorStatsDynamic final: public ActorProcessor { public: ProcessorActorStatsDynamic() diff --git a/apps/openmw-mp/processors/actor/ProcessorActorTest.hpp b/apps/openmw-mp/processors/actor/ProcessorActorTest.hpp index 782f6e46e..cab10ce4e 100644 --- a/apps/openmw-mp/processors/actor/ProcessorActorTest.hpp +++ b/apps/openmw-mp/processors/actor/ProcessorActorTest.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorActorTest : public ActorProcessor + class ProcessorActorTest final: public ActorProcessor { public: ProcessorActorTest() diff --git a/apps/openmw-mp/processors/player/ProcessorChatMsg.hpp b/apps/openmw-mp/processors/player/ProcessorChatMsg.hpp index 0f57e26a9..9118d9541 100644 --- a/apps/openmw-mp/processors/player/ProcessorChatMsg.hpp +++ b/apps/openmw-mp/processors/player/ProcessorChatMsg.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorChatMsg : public PlayerProcessor + class ProcessorChatMsg final: public PlayerProcessor { public: ProcessorChatMsg() diff --git a/apps/openmw-mp/processors/player/ProcessorGUIMessageBox.hpp b/apps/openmw-mp/processors/player/ProcessorGUIMessageBox.hpp index 91c918897..a7fedfb65 100644 --- a/apps/openmw-mp/processors/player/ProcessorGUIMessageBox.hpp +++ b/apps/openmw-mp/processors/player/ProcessorGUIMessageBox.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorGUIMessageBox : public PlayerProcessor + class ProcessorGUIMessageBox final: public PlayerProcessor { public: ProcessorGUIMessageBox() diff --git a/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp b/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp index 7efa6445d..91b6994c8 100644 --- a/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp +++ b/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorGUIWindow : public PlayerProcessor + class ProcessorGUIWindow final: public PlayerProcessor { public: ProcessorGUIWindow() diff --git a/apps/openmw-mp/processors/player/ProcessorGameWeather.hpp b/apps/openmw-mp/processors/player/ProcessorGameWeather.hpp index 3930a803e..fb5bff6d9 100644 --- a/apps/openmw-mp/processors/player/ProcessorGameWeather.hpp +++ b/apps/openmw-mp/processors/player/ProcessorGameWeather.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorGameWeather : public PlayerProcessor + class ProcessorGameWeather final: public PlayerProcessor { public: ProcessorGameWeather() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp index aff09987b..ecac9ed6f 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerAnimFlags : public PlayerProcessor + class ProcessorPlayerAnimFlags final: public PlayerProcessor { public: ProcessorPlayerAnimFlags() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerAnimPlay.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerAnimPlay.hpp index c034017d7..d9c064438 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerAnimPlay.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerAnimPlay.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerAnimPlay : public PlayerProcessor + class ProcessorPlayerAnimPlay final: public PlayerProcessor { public: ProcessorPlayerAnimPlay() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerAttack.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerAttack.hpp index 378564261..296256654 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerAttack.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerAttack.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerAttack : public PlayerProcessor + class ProcessorPlayerAttack final: public PlayerProcessor { PlayerPacketController *playerController; public: diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerAttribute.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerAttribute.hpp index 6b4120c10..62c52e39d 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerAttribute.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerAttribute.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerAttribute : public PlayerProcessor + class ProcessorPlayerAttribute final: public PlayerProcessor { public: ProcessorPlayerAttribute() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerBook.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerBook.hpp index 38abe582b..1ca96bd1c 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerBook.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerBook.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerBook : public PlayerProcessor + class ProcessorPlayerBook final: public PlayerProcessor { public: ProcessorPlayerBook() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerBounty.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerBounty.hpp index c3b7d5ffa..957f512df 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerBounty.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerBounty.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerBounty : public PlayerProcessor + class ProcessorPlayerBounty final: public PlayerProcessor { public: ProcessorPlayerBounty() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp index fb74c3eb3..68d0615a6 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp @@ -11,7 +11,7 @@ namespace mwmp { - class ProcessorPlayerCellChange : public PlayerProcessor + class ProcessorPlayerCellChange final: public PlayerProcessor { PlayerPacketController *playerController; public: diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerCellState.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerCellState.hpp index 84e7c31e9..28bc94c1b 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerCellState.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerCellState.hpp @@ -7,7 +7,7 @@ namespace mwmp { - class ProcessorPlayerCellState : public PlayerProcessor + class ProcessorPlayerCellState final: public PlayerProcessor { PlayerPacketController *playerController; public: diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerCharClass.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerCharClass.hpp index 6148fa946..e80481611 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerCharClass.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerCharClass.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerCharClass : public PlayerProcessor + class ProcessorPlayerCharClass final: public PlayerProcessor { public: ProcessorPlayerCharClass() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerCharGen.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerCharGen.hpp index edc9cd46b..48a28f56b 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerCharGen.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerCharGen.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerCharGen : public PlayerProcessor + class ProcessorPlayerCharGen final: public PlayerProcessor { public: ProcessorPlayerCharGen() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerDeath.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerDeath.hpp index 62e70a9e2..335afd8d0 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerDeath.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerDeath.hpp @@ -10,7 +10,7 @@ namespace mwmp { - class ProcessorPlayerDeath : public PlayerProcessor + class ProcessorPlayerDeath final: public PlayerProcessor { public: ProcessorPlayerDeath() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerDisposition.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerDisposition.hpp index ea0e3a197..864fe0278 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerDisposition.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerDisposition.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerDisposition : public PlayerProcessor + class ProcessorPlayerDisposition final: public PlayerProcessor { public: ProcessorPlayerDisposition() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerEquipment.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerEquipment.hpp index 828a1775d..f98d3111f 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerEquipment.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerEquipment.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerEquipment : public PlayerProcessor + class ProcessorPlayerEquipment final: public PlayerProcessor { public: ProcessorPlayerEquipment() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerFaction.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerFaction.hpp index 0a20f18d0..3db79db22 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerFaction.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerFaction.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerFaction : public PlayerProcessor + class ProcessorPlayerFaction final: public PlayerProcessor { public: ProcessorPlayerFaction() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerInventory.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerInventory.hpp index 6b39f8095..4efe375e6 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerInventory.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerInventory.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerInventory : public PlayerProcessor + class ProcessorPlayerInventory final: public PlayerProcessor { public: ProcessorPlayerInventory() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerJournal.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerJournal.hpp index 6c0fbc38d..44c7d67e2 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerJournal.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerJournal.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerJournal : public PlayerProcessor + class ProcessorPlayerJournal final: public PlayerProcessor { public: ProcessorPlayerJournal() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp index 582d7c680..4f005c9d6 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerKillCount : public PlayerProcessor + class ProcessorPlayerKillCount final: public PlayerProcessor { public: ProcessorPlayerKillCount() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerLevel.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerLevel.hpp index 9f8863bb9..11a8a09ee 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerLevel.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerLevel.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerLevel : public PlayerProcessor + class ProcessorPlayerLevel final: public PlayerProcessor { public: ProcessorPlayerLevel() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp index f7e1a93c5..dd989b34e 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerMap : public PlayerProcessor + class ProcessorPlayerMap final: public PlayerProcessor { public: ProcessorPlayerMap() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerPosition.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerPosition.hpp index 7b0c0c11d..3ba16930c 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerPosition.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerPosition.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerPosition : public PlayerProcessor + class ProcessorPlayerPosition final: public PlayerProcessor { public: ProcessorPlayerPosition() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerRest.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerRest.hpp index c967b9c7d..f9df64bd4 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerRest.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerRest.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerRest : public PlayerProcessor + class ProcessorPlayerRest final: public PlayerProcessor { public: ProcessorPlayerRest() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerResurrect.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerResurrect.hpp index fc771f610..b70a3a32f 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerResurrect.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerResurrect.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerResurrect : public PlayerProcessor + class ProcessorPlayerResurrect final: public PlayerProcessor { public: ProcessorPlayerResurrect() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerShapeshift.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerShapeshift.hpp index 5f08fc70d..15e72b6f2 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerShapeshift.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerShapeshift.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerShapeshift : public PlayerProcessor + class ProcessorPlayerShapeshift final: public PlayerProcessor { public: ProcessorPlayerShapeshift() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerSkill.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerSkill.hpp index 55e14ad2e..a429bae93 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerSkill.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerSkill.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerSkill : public PlayerProcessor + class ProcessorPlayerSkill final: public PlayerProcessor { public: ProcessorPlayerSkill() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerSpeech.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerSpeech.hpp index d268abd36..6768e700d 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerSpeech.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerSpeech.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerSpeech : public PlayerProcessor + class ProcessorPlayerSpeech final: public PlayerProcessor { public: ProcessorPlayerSpeech() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerSpellbook.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerSpellbook.hpp index cfdb03088..4ef7ed7be 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerSpellbook.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerSpellbook.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerSpellbook : public PlayerProcessor + class ProcessorPlayerSpellbook final: public PlayerProcessor { public: ProcessorPlayerSpellbook() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerStatsDynamic.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerStatsDynamic.hpp index 23a630164..6df65e77d 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerStatsDynamic.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerStatsDynamic.hpp @@ -9,7 +9,7 @@ namespace mwmp { - class ProcessorPlayerStatsDynamic : public PlayerProcessor + class ProcessorPlayerStatsDynamic final: public PlayerProcessor { public: ProcessorPlayerStatsDynamic() diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp index fdcdfae0d..f03b289b8 100644 --- a/apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp +++ b/apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorPlayerTopic : public PlayerProcessor + class ProcessorPlayerTopic final: public PlayerProcessor { public: ProcessorPlayerTopic() diff --git a/apps/openmw-mp/processors/world/ProcessorContainer.hpp b/apps/openmw-mp/processors/world/ProcessorContainer.hpp index 667e488e4..e7d773f0f 100644 --- a/apps/openmw-mp/processors/world/ProcessorContainer.hpp +++ b/apps/openmw-mp/processors/world/ProcessorContainer.hpp @@ -7,7 +7,7 @@ namespace mwmp { - class ProcessorContainer : public WorldProcessor + class ProcessorContainer final: public WorldProcessor { public: ProcessorContainer() diff --git a/apps/openmw-mp/processors/world/ProcessorDoorState.hpp b/apps/openmw-mp/processors/world/ProcessorDoorState.hpp index 1e70f6313..18017f7a2 100644 --- a/apps/openmw-mp/processors/world/ProcessorDoorState.hpp +++ b/apps/openmw-mp/processors/world/ProcessorDoorState.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorDoorState : public WorldProcessor + class ProcessorDoorState final: public WorldProcessor { public: ProcessorDoorState() diff --git a/apps/openmw-mp/processors/world/ProcessorMusicPlay.hpp b/apps/openmw-mp/processors/world/ProcessorMusicPlay.hpp index e27395ab1..937fea121 100644 --- a/apps/openmw-mp/processors/world/ProcessorMusicPlay.hpp +++ b/apps/openmw-mp/processors/world/ProcessorMusicPlay.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorMusicPlay : public WorldProcessor + class ProcessorMusicPlay final: public WorldProcessor { public: ProcessorMusicPlay() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectAnimPlay.hpp b/apps/openmw-mp/processors/world/ProcessorObjectAnimPlay.hpp index 5461c9d18..2d3c3f668 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectAnimPlay.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectAnimPlay.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectAnimPlay : public WorldProcessor + class ProcessorObjectAnimPlay final: public WorldProcessor { public: ProcessorObjectAnimPlay() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectDelete.hpp b/apps/openmw-mp/processors/world/ProcessorObjectDelete.hpp index 335ce6485..0cb9505dc 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectDelete.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectDelete.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectDelete : public WorldProcessor + class ProcessorObjectDelete final: public WorldProcessor { public: ProcessorObjectDelete() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectLock.hpp b/apps/openmw-mp/processors/world/ProcessorObjectLock.hpp index 6391f33c5..6fa206ceb 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectLock.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectLock.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectLock : public WorldProcessor + class ProcessorObjectLock final: public WorldProcessor { public: ProcessorObjectLock() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectMove.hpp b/apps/openmw-mp/processors/world/ProcessorObjectMove.hpp index 523875b99..a0b0e6b2f 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectMove.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectMove.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectMove : public WorldProcessor + class ProcessorObjectMove final: public WorldProcessor { public: ProcessorObjectMove() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectPlace.hpp b/apps/openmw-mp/processors/world/ProcessorObjectPlace.hpp index 46d0fa6e3..9f0d1dc42 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectPlace.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectPlace.hpp @@ -6,7 +6,7 @@ namespace mwmp { - class ProcessorObjectPlace : public WorldProcessor + class ProcessorObjectPlace final: public WorldProcessor { public: ProcessorObjectPlace() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectRotate.hpp b/apps/openmw-mp/processors/world/ProcessorObjectRotate.hpp index ed0eb6631..bac9469d4 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectRotate.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectRotate.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectRotate : public WorldProcessor + class ProcessorObjectRotate final: public WorldProcessor { public: ProcessorObjectRotate() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectScale.hpp b/apps/openmw-mp/processors/world/ProcessorObjectScale.hpp index 617598fb3..74c9ded96 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectScale.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectScale.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectScale : public WorldProcessor + class ProcessorObjectScale final: public WorldProcessor { public: ProcessorObjectScale() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectSpawn.hpp b/apps/openmw-mp/processors/world/ProcessorObjectSpawn.hpp index 823d64967..3b906731a 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectSpawn.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectSpawn.hpp @@ -6,7 +6,7 @@ namespace mwmp { - class ProcessorObjectSpawn : public WorldProcessor + class ProcessorObjectSpawn final: public WorldProcessor { public: ProcessorObjectSpawn() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectState.hpp b/apps/openmw-mp/processors/world/ProcessorObjectState.hpp index 1635df8c1..62d40ea44 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectState.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectState.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectState : public WorldProcessor + class ProcessorObjectState final: public WorldProcessor { public: ProcessorObjectState() diff --git a/apps/openmw-mp/processors/world/ProcessorObjectTrap.hpp b/apps/openmw-mp/processors/world/ProcessorObjectTrap.hpp index 6d3a56dea..657439346 100644 --- a/apps/openmw-mp/processors/world/ProcessorObjectTrap.hpp +++ b/apps/openmw-mp/processors/world/ProcessorObjectTrap.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorObjectTrap : public WorldProcessor + class ProcessorObjectTrap final: public WorldProcessor { public: ProcessorObjectTrap() diff --git a/apps/openmw-mp/processors/world/ProcessorScriptGlobalShort.hpp b/apps/openmw-mp/processors/world/ProcessorScriptGlobalShort.hpp index 1086dee4c..95d881838 100644 --- a/apps/openmw-mp/processors/world/ProcessorScriptGlobalShort.hpp +++ b/apps/openmw-mp/processors/world/ProcessorScriptGlobalShort.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorScriptGlobalShort : public WorldProcessor + class ProcessorScriptGlobalShort final: public WorldProcessor { public: ProcessorScriptGlobalShort() diff --git a/apps/openmw-mp/processors/world/ProcessorScriptLocalFloat.hpp b/apps/openmw-mp/processors/world/ProcessorScriptLocalFloat.hpp index 2a593c241..4b641eca0 100644 --- a/apps/openmw-mp/processors/world/ProcessorScriptLocalFloat.hpp +++ b/apps/openmw-mp/processors/world/ProcessorScriptLocalFloat.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorScriptLocalFloat : public WorldProcessor + class ProcessorScriptLocalFloat final: public WorldProcessor { public: ProcessorScriptLocalFloat() diff --git a/apps/openmw-mp/processors/world/ProcessorScriptLocalShort.hpp b/apps/openmw-mp/processors/world/ProcessorScriptLocalShort.hpp index 518b3be46..b4a579997 100644 --- a/apps/openmw-mp/processors/world/ProcessorScriptLocalShort.hpp +++ b/apps/openmw-mp/processors/world/ProcessorScriptLocalShort.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorScriptLocalShort : public WorldProcessor + class ProcessorScriptLocalShort final: public WorldProcessor { public: ProcessorScriptLocalShort() diff --git a/apps/openmw-mp/processors/world/ProcessorScriptMemberShort.hpp b/apps/openmw-mp/processors/world/ProcessorScriptMemberShort.hpp index 75269d88f..6704f5aa2 100644 --- a/apps/openmw-mp/processors/world/ProcessorScriptMemberShort.hpp +++ b/apps/openmw-mp/processors/world/ProcessorScriptMemberShort.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorScriptMemberShort : public WorldProcessor + class ProcessorScriptMemberShort final: public WorldProcessor { public: ProcessorScriptMemberShort() diff --git a/apps/openmw-mp/processors/world/ProcessorVideoPlay.hpp b/apps/openmw-mp/processors/world/ProcessorVideoPlay.hpp index 1b7940c6a..5377bf169 100644 --- a/apps/openmw-mp/processors/world/ProcessorVideoPlay.hpp +++ b/apps/openmw-mp/processors/world/ProcessorVideoPlay.hpp @@ -5,7 +5,7 @@ namespace mwmp { - class ProcessorVideoPlay : public WorldProcessor + class ProcessorVideoPlay final: public WorldProcessor { public: ProcessorVideoPlay()