From 397043fa3d900430e9e0f6d328b76898f9613388 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 17 Oct 2019 17:37:10 +0100 Subject: IVGCVSW-4002 Add FamilyId to CommandHandlerKey Change-Id: I0bb0bf77da2bcd7f4746078c4ccee9acc98638a7 Signed-off-by: Jim Flynn --- src/profiling/CommandHandlerRegistry.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/profiling/CommandHandlerRegistry.hpp') diff --git a/src/profiling/CommandHandlerRegistry.hpp b/src/profiling/CommandHandlerRegistry.hpp index 9d514bfcc3..43419deea4 100644 --- a/src/profiling/CommandHandlerRegistry.hpp +++ b/src/profiling/CommandHandlerRegistry.hpp @@ -34,11 +34,11 @@ class CommandHandlerRegistry public: CommandHandlerRegistry() = default; - void RegisterFunctor(CommandHandlerFunctor* functor, uint32_t packetId, uint32_t version); + void RegisterFunctor(CommandHandlerFunctor* functor, uint32_t familyId, uint32_t packetId, uint32_t version); void RegisterFunctor(CommandHandlerFunctor* functor); - CommandHandlerFunctor* GetFunctor(uint32_t packetId, uint32_t version) const; + CommandHandlerFunctor* GetFunctor(uint32_t familyId, uint32_t packetId, uint32_t version) const; private: std::unordered_map registry; -- cgit v1.2.1